Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Flask Basics Character Builder Create a JSON String

Callum Anderson
seal-mask
.a{fill-rule:evenodd;}techdegree
Callum Anderson
Data Analysis Techdegree Student 10,200 Points

Wording of question is confusing for me. JSON Strings in Flask Basics

Feeling a bit miffed as I'm not understanding and would like a second perspective! been enjoying this so far and would like to continue. Should be able to view the challenge to see the question and such on the top right.

json_string.py
import json

def to_json():

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Callum Anderson ! Looks like you've got started pretty well. Your function definition is going to need a parameter to hold what we're passing in. In this case, it's asking you to convert it to a string. So you will need the .dumps() method of json here.

import json

def to_json(py_dict): # accept a Python object
    return json.dumps(py_dict)  # convert the Python object (dict) to a string and return it

Hope this helps! :sparkles: