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 trialSou Saeteurn
Full Stack JavaScript Techdegree Student 4,218 PointsHi I need help with the dictionary portion. The first assignment
Creating a dictionary
student = {'name': ",'topic': python}
2 Answers
Rodney Lyster
2,395 PointsYou are missing the 2nd item from the first pair. "Value" You also need to watch your syntax. It should be something like Dictionary = {"a":"b" , "c":"d"} Hope this helps
Mark Sebeck
Treehouse Moderator 37,799 PointsAre you trying to create an empty string for name? If so you need two single quotes not a double quote. Also need python in quotes since its a string. Follow Rodney's syntax above.