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

Create 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!

from_json.py
import json

def from_json(data):
    args = json.parse(data)
    return args

2 Answers

Hi 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

Thank you!! I actually went back to the videos and figured it out.