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 trialCallum Anderson
Data Analysis Techdegree Student 10,200 PointsWording 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.
import json
def to_json():
1 Answer
Jennifer Nordell
Treehouse TeacherHi 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!
Callum Anderson
Data Analysis Techdegree Student 10,200 PointsCallum Anderson
Data Analysis Techdegree Student 10,200 PointsI understood the library but was totally puzzled how to go about it. Thanks so much!!