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 Introducing Dictionaries Introducing Dictionaries Creating a Dictionary

2 Answers

You 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
MOD
Mark Sebeck
Treehouse Moderator 37,353 Points

Are 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.