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 trialJeremy Graslie
2,037 PointsTask 1 is no longer working
I am getting stuck with the challenge where it keeps asking me to go back and fix task 1. I'll pass task 1, but then when I write the code for task 3 it will tell me "Task 1 is no longer working".
Can someone look at my code and tell me what's going wrong?
the_list = ["a", 2, 3, 1, False, [1, 2, 3]]
# Your code goes below here
the_list.insert(0, the_list.pop(3))
the_list.remove("a")
the_list.remove(False)
the_list.remove([1, 2, 3])
the_list.extend(4, 20)
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsWhen you see "task 1 is no longer working" it usually means a syntax error was added. in your last line:
the_list.extend(4, 20)
Generates the error Bummer! TypeError: extend() takes exactly one argument (2 given)
The correct answer is to generate the numbers from 4 to 20 using range
:
the_list.extend(range(4, 21))
Jeremy Graslie
2,037 PointsThanks! It looks like that was what was missing! :D
Jeremy Graslie
2,037 PointsJeremy Graslie
2,037 Pointsit seems like the_list.remove([1, 2, 3]) still leaves that list of numbers at the end of the list, and I'm wondering if that's causing part of the problem