show/hide this revision's text 2 Fixed tiny identifier mistake.

Highlights for day-to-day coding:

Enumeration: Instead of doing:

for i in xrange(len(sequence)):    val = sequence[i]

You can now more succinctly write:

for i, val in enumerate(iterable):

This is important because it works for non-getitemable iterables (you would otherwise have to use an incrementing index counter alongside value iteration).

Logging: a sane alternative to print-based debugging, standardized in a Log4j-style library module.

Booleans: True and False, added for clarity: return True clearer intention than return 1.

Generators: An expressive form of lazy evaluation

evens = (i for i in xrange(limit) if i % 2 == 0)

Extended slices: Builtins support strides in slices.

assert [1, 2, 3, 4][::2] == [1, 3]

Sets: For O(1) lookup semantics, you no longer have to do:

pseudo_set = {'foo': None, 'bar': None}assert 'foo' in pseudo_set

You can now do:

set_ = set(['foo', 'bar'])assert 'foo' in set_

Reverse iteration: reversed(sequence) is more readable than sequence[::-1].

Subprocess: Unifies all the ways you might want to invoke a subprocess -- capturing outputs, feeding input, blocking or non-blocking.

Conditional expressions: There's an issue with the idiom:

a and b or c

Namely, when b is falsy. b if a else c resolves that issue.

Context management: Resource acquisition/release simplified via the with statement.

with open(filename) as file:    print file.read()# File is closed outside the `with` block.

Better string formatting: Too much to describe -- see Python documentation under str.format().

show/hide this revision's text 1

Check out What's New in Python. It has all the versions in the 2.x series. Per Alex's comments, you'll want to look at all Python 2.x for x > 2.