vote up 1 vote down star

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.

flag

This probably makes a good community wiki topic – Dana Jan 13 at 21:54
what if your favorite feature isn't hidden? :P </pedant> – Jimmy Jan 13 at 22:05

closed as exact duplicate by Teifion Jan 13 at 21:55

1 Answer

vote up 0 vote down check

Hidden Features of Python

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.