Dupe: http://stackoverflow.com/questions/101268/hidden-features-of-python
What is a feature you could not live without when using Python?
If you don't mind bold face it at the top :) and the give a short explanation why you can't live without it or a short example of what it can do. If you see it already on the list, up vote that person and then add your reason in a comment.
List comprehensions
- short and concise
- easy to read
- powerful
They can be used as generators:
for something in (x for x in xrange(huge_number)):
do_something_crazy(x)
They can also be nested which can replace a huge amount of nested for loops:
[(i, j) for i in range(10) for j in range(10)]
List comprehensions are a pretty powerful construct. Some basic info on them can be found here.