I think in Python 3 I’ll be able to do:
first, *rest = l
which is exactly what I want, but I’m using 2.6. For now I’m doing:
first = l[0]
rest = l[1:]
This is fine, but I was just wondering if there’s something more elegant.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Basically the same, except that it’s a oneliner. Tuple assigment rocks.
This is a bit longer and less obvious, but generalized for all iterables (instead of being restricted to sliceables):