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

Vashisth Bhatt
seal-mask
.a{fill-rule:evenodd;}techdegree
Vashisth Bhatt
Python Web Development Techdegree Student 6,786 Points

didn't find enough items in `my_list`. It should have 6 total.

what to do with this error?

lists.py
my_list=[5,7,9,"Ram","Shyam"]
my_list.pop(4)
my_list.extend([90,"ghk"])

2 Answers

wilmington
wilmington
9,845 Points

Hey there, I am not sure what exactly you are looking for but let me try to assist you. When I run your script with print(len(my_list)) it returned 6, so your list contains 6 items as you were expecting. Just give it another try. Good luck!

You need 6 items: 3 numbers, 2 strings, 1 list

Right now you have 6 items: 4 numbers, 2 strings, 0 list

Try using append instead of extend and remove the pop statement