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 trialLogan Valdez
Courses Plus Student 6,741 PointsI am having trouble with this quiz question on python dictionaries.
Quiz Question: “Set the key ‘color’ to the value ‘red’ My_car[blank] = [blank]
I put in my_car[“color”] = “red”, but I get an error. What is wrong with the code?
1 Answer
Steven Parker
231,236 PointsThat's the correct answer, perhaps you had a typo when answering the quiz.
Try it again.
Logan Valdez
Courses Plus Student 6,741 PointsLogan Valdez
Courses Plus Student 6,741 PointsNo typos.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsI see it now. You've got word-processor style ("curly") quotes around your values instead of plain programming quotes. I'll try enlarging the font to make the difference more visible:
“color” curly quotes
"color" plain quotes
Code in quizzes or challenges will always use plain, programmer-style quotes.
Logan Valdez
Courses Plus Student 6,741 PointsLogan Valdez
Courses Plus Student 6,741 PointsAh okay, thanks!