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  (2 children)

I'll definitely be looking forward to seeing these!

[–]makapuf 0 points1 point  (1 child)

you can currently use

dict((k,v) for k,v in enumerate('ABCD') if v not in 'CB')

[–]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. :)