up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

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

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

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

1 Answer

up vote -1 down vote accepted

Hidden Features of Python

link|improve this answer
feedback

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