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
Shawndee Boyd
6,002 PointsCreate a function named from_json that takes a single argument. Parse the argument with the json library and return it.
Ugh! This seems simple but this isn't passing!
import json
def from_json(data):
args = json.parse(data)
return args
2 Answers
mikes02
Courses Plus Student 16,968 PointsHi Shawndee,
I just wanted to give you a heads up that your original post was in the CSS category, so I updated it to Python. Also, I did a quick forum search and it appears a fellow student had a similar issue and had it resolved, check this out: https://teamtreehouse.com/forum/create-a-function-named-fromjson-that-takes-a-single-argument-parse-the-argument-with-the-json-library-and-return-it
Shawndee Boyd
6,002 PointsThank you!! I actually went back to the videos and figured it out.