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 (Retired) Lists Redux Manipulating Lists

Dave Hanna
PLUS
Dave Hanna
Courses Plus Student 2,969 Points

Dont know how to solve this

Don't really know what I'm doing

lists.py
the_list = ["a", 2, 3, 1, False, [1, 2, 3]]

# Your code goes below here
the_list.pop(4)
the_list.insert(0)

1 Answer

Steven Parker
Steven Parker
229,608 Points

You do seem to have the right idea. But you have a few issues:

  • remember that indexes start at 0, not 1. The value you want is not at index 4.
  • the insert method takes two arguments, the offset (you have that already), and the thing to insert
  • the pop method will return the thing that it removes.

I'll bet you can get it now without an explicit spoiler.

Dave Hanna
Dave Hanna
Courses Plus Student 2,969 Points

the_list = ["a", 2, 3, 1, False, [1, 2, 3]]

Your code goes below here

value = the_list.pop(3) the_list.insert(0, value)

Got it thanks!