Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Andy 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,532 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.