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 trialsam short
1,481 Pointspython collections list review
not sure what is wrong here keeps saying i need six items in the list but the instructions seem to say something different
number_list = [ 7, 3, 5]
string_list = ["python" , "collection"]
my_list = number_list + string_list
1 Answer
Mark Kastelic
8,147 PointsHi Sam,
The instructions ask for a list with 3 numbers, 2 strings, AND another list with two items in it like this:
my_list = [5, 6, 7, 'cat', 'dog', [2, 0]]
Mark Kastelic
8,147 PointsMark Kastelic
8,147 PointsThus, there are six items total in the final list.