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

HELLO! how do you handle the problem of "communication problem".

Python

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

# Your code goes below here
a_list = the_list.pop(3)

the_list.insert(0, a_list)

Hello, most of the times I have communication problems, I just refresh my browser and begin again. It sucks, I know, but at least it makes you type again and become more proficient.

Thanks

2 Answers

Erin Leathers
Erin Leathers
3,562 Points

Hi I see your asking about communication but after just finishing this code challenge last night I wish to make you aware that you can do the above without a variable.

You can also use the_list.insert(0, the_list.pop(3))

Both do the same but not using a variable is a little more efficient.

Thanks,

Aaryn

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

That'll be a problem with the servers that run the code challenges, not actually with your code or the challenge itself.

Thanks Kenneth