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 Collections (2016, retired 2019) Lists Creating lists

I don't have any clue?

creating list?

lists.py
[1,5,true,"apple"   [1,2,3,4]   [1,5,"banana"     my_list {1,3,5,false,"pear"]    [0,1,2, "treehouse" "apple"]

1 Answer

Steven Parker
Steven Parker
230,995 Points

:point_right: It shouldn't be quite this complicated.

Your list only needs 6 items in it: 3 numbers, two strings, and another list (of 2 items).

Try simplifying it so it matches the criteria (but with nothing extra). And remember that items in a list are separated by commas.

And most importantly, remember in an assignment that the variable name comes first, then an equal-sign ("="), and then the value being assigned (the list in this case).