List/dict/set comprehensions
[x**2 for x in (2,4,6)] {x: x**2 for x in (2, 4, 6)} {x for x in 'abracadabra' if x not in 'abc'}