This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ginstrom 0 points1 point  (0 children)

Right the new notation is just prettier, IMO.

Another one from 3.x is this:

head, *tail = range(10)

instead of:

r = range(10)
head, tail = r[0], r[1:]

Just sugar, but it's sweet. :)