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

Steven Olick
Steven Olick
1,561 Points

put a list in a list?

I don't know if I'm misreading the question or what but what is incorrect about this? This is for challenge one at the very beginning of the collections course.

lists.py
my_list = [1, 2, 3, "cat",["dog", 5]]

1 Answer

Kai Long Chan
Kai Long Chan
3,238 Points

The question said that 3 numbers and 2 strings

my_list = [1, 2, 3, "cat", "treehouse",["dog", 5]]
Steven Olick
Steven Olick
1,561 Points

Ok, that worked. Thank you. I think I was confused because it said the last member of the list should be another list with two items, and to me that meant a total of 6 items in the entire list. Thank you for helping with what was a very simple fix.