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 Python Basics (2015) Python Data Types List Creation

Syed Hasan
Syed Hasan
313 Points

I tried to put names of color to the list but it was showing there was a name error. How do you fix this problem?

I tried to put names of color to the list but it was showing there was a name error. How do you fix this problem?

lists.py
colors = [blue,red,violet,orange,yellow];

1 Answer

nicole lumpkin
PLUS
nicole lumpkin
Courses Plus Student 5,328 Points

Hi Syed!

You are not alone in this, in fact another student posted this very same question! Remember you are trying to create a list of strings. The square brackets denote the list, and the colors should be your strings. What syntax do you need to denote the colors as strings? :)

I hope this helps!