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 cannot figure out this issue. Not sure what I am doing wrong.

This challenge is just meant as a refresher. Create a single new list variable named my_list. Put 3 numbers and 2 strings into it in whatever order you want. For the last member, though, add another list with 2 items in it.

lists.py
my_list = ["hello", "red", 20, 5, 7]

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,860 Points

Hey Daron,

You're missing the last part of the instructions:

For the last member, though, add another list with 2 items in it.

So, in the end... your list should have six items. 3 numbers, 2 strings, and 1 list (this means there will be a list inside of the list.

Hope that is enough of a hint to get you there. :)

Keep Coding! :dizzy: