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 trialfabrizio anichini
1,751 PointsWhy i wrong task 3?
hello friend im on task 3 and i dont know why i wrong code
the_list = ["a", 2, 3, 1, False, [1, 2, 3]]
# Your code goes below here
the_list.remove(1)
the_list.insert(0, 1)
the_list.remove("a")
the_list.remove(False)
the_list.remove([1, 2, 3])
new_list = range(20)
the_list.extend(new_list)
1 Answer
jacinator
11,936 PointsThe only issue that you have is that you are trying to give it the wrong range. You already have [1, 2, 3]
, so you can start at 4
and you need to include 20
so you'll need to go up to 21
.
new_list = range(4, 21)
the_list.extend(new_list)
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsNice!
Perfect answer :)