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 trialAndy Bosco
Courses Plus Student 681 PointsThe questionnaire is confusing. Who wrote this?
"Move the 1 to position 0. You can do this in one step with .pop() and .insert()." ? I assume Move index 1 to index 0? Move the the number 1 to the index 0? Be more specific PLEASE.
the_list = ["a", 2, 3, 1, False, [1, 2, 3]]
# Your code goes below here
the_list.pop()
the_list.insert(1,0)
2 Answers
Dan Johnson
40,533 PointsIt means to move the numeric literal 1 to the index 0. So index 3 to index 0.
Andy Bosco
Courses Plus Student 681 PointsThanks Dan. It makes sense why you write like yours and I got the code to work now. The code is not that difficult to right but wording of the questions are something.