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 Lists

Quotes around list items

I'm confused as to why the video doesn't show creating a list with quotes around the numbers ie: [1, 2, 3, 4] but our code challenge doesn't pass unless we use quotes around our colors list.

darren logue
darren logue
7,322 Points

Can't rem the challenge but in this example...the numbers are integers, colors are strings.

1 Answer

Zach Hudson
Zach Hudson
7,702 Points

No quotes means it is a number (int), quotes means it is text (string). The use of quotes is dependent on whether you want an int or a string.

No quotes = int

Quotes = string