vote up 175 vote down
star
291

What are the lesser-known but useful features of the Python programming language.

  • Try to limit answers to Python core
  • One feature per answer
  • Give an example and short description of the feature, not just a link to documentation
  • Label the feature using bold title as the first line
flag
1 
Okay, this is an awesome topic – Teifion Sep 19 at 11:56
add / show 2 more comments

103 Answers

1 2 3 4 next
vote up 125 vote down

Chaining comparison operators:

>>> x = 5
>>> 1 < x < 10
True
>>> 10 < x < 20 
False
>>> x < 10 < x*10 < 100
True
>>> 10 > x <= 9
True
>>> 5 == x > 4
True

In case you're thinking it's doing, '1 < x', which comes out as True, and then comparing 'True < 10', which is also True, then no, that's really not what happens (see the last example.) It's really translating into '1 < x and x < 10', and 'x < 10 and 10 < x * 10 and x*10 < 100', but with less typing and each term is only evaluated once.

link|flag
2 
This applies to other comparison operators as well, which is why people are sometimes surprised why code like (5 in [5] is True) is False (but it's unpythonic to explicitly test against booleans like that to begin with). – Miles Mar 2 at 18:35
add / show 4 more comments
vote up 115 vote down

Get the python regex parse tree to debug your regex

Regular expression are a great feature of python, but debugging them can be a pain, and it's just too easy to get a regex wrong.

Fortunately, python have a really hidden feature to print the regex parse tree, by passing the hidden flag 128 to re.compile

>>> re.compile("^\[font(?:=(?P<size>[-+][0-9]{1,2}))?\](.*?)[/font]",
    128)
at at_beginning
literal 91
literal 102
literal 111
literal 110
literal 116
max_repeat 0 1
  subpattern None
    literal 61
    subpattern 1
      in
        literal 45
        literal 43
      max_repeat 1 2
        in
          range (48, 57)
literal 93
subpattern 2
  min_repeat 0 65535
    any None
in
  literal 47
  literal 102
  literal 111
  literal 110
  literal 116

Once you understand the syntax, you can spot your errors. There we can see that i forgot to escape the [] in [/font].

Of course you can combine it with whatever flags you want, like commented regexes :

>>> re.compile("""
 ^              # start of a line
 \[font         # the font tag
 (?:=(?P<size>  # optional [font=+size]
 [-+][0-9]{1,2} # size specification
 ))?
 \]             # end of tag
 (.*?)          # text beetween the tags
 \[/font\]      # end of the tag
 """, 128+re.VERBOSE+re.DOTALL)
link|flag
15 
Instead of 128 you can also use re.DEBUG. Be aware that the comment in the source says this flag is experimental and you shouldn't rely on it. – Andreas Thomas Dec 28 at 14:24
4 
If you can use re.DEBUG, then you should. It may be experimental, but it's still the symbolic name, and the actual 128 value is just as experimental, but less readable, and more subject to change. – Lee B Jun 18 at 9:54
add comment
vote up 83 vote down

iter() can take a callable argument

For instance:

def seek_next_line(f):
    for c in iter(lambda: f.read(1),'\n'):
        pass

The iter(callable, until_value) calls repetitively the callable and yields its result until the callable returns until_value.

link|flag
7 
You should also add the explanation: iter(callable, sentinel) -> iterator; the callable is called until it returns the sentinel. – Cristian Ciupitu Oct 5 at 15:23
add / show 1 more comment
vote up 73 vote down

Creating generators objects

If you write

x=(n for n in foo if bar(n))

you can get out the generator and assign it to x. Now it means you can do

for n in x:

The advantage of this is that you don't need intermediate storage, which you would need if you did

x = [n for n in foo if bar(n)]

In some cases this can lead to significant speed up.

link|flag
3 
Of particular note is the memory overhead savings. Values are computed on-demand, so you never have the entire result of the list comprehension in memory. This is particularly desirable if you later iterate over only part of the list comprehension. – saffsd May 17 at 2:41
add / show 1 more comment
vote up 65 vote down

Decorators

Decorators allow to wrap a function or method in another function that can add functionality, modify arguments or results, etc. You write decorators one line above the function definition, beginning with an "at" sign (@).

Example shows a print_args decorator that prints function's arguments before calling it:

>>> def print_args(function):
>>>     def wrapper(*args, **kwargs):
>>>         print 'Arguments:', args, kwargs
>>>         return function(*args, **kwargs)
>>>     return wrapper

>>> @print_args
>>> def write(text):
>>>     print text

>>> write('foo')
Arguments: ('foo',) {}
foo
link|flag
4 
When defining decorators, I'd recommend decorating the decorator with @decorator. It creates a decorator that preserves a functions signature when doing introspection on it. More info here: phyast.pitt.edu/~micheles/python/… – sirwart Sep 22 at 15:53
8 
How is this a hidden feature? – vetler Oct 2 at 13:52
3 
Well, it's not present in most simple Python tutorials, and I stumbled upon it a long time after I started using Python. That is what I would call a hidden feature, just about the same as other top posts here. – DzinX Oct 3 at 6:51
4 
vetler, the questions asks for "lesser-known but useful features of the Python programming language." How do you measure 'lesser-known but useful features'? I mean how are any of these responses hidden features? – Johnd May 23 at 21:14
add comment
vote up 65 vote down

The step argument in slice operators. For example:

a = [1,2,3,4,5]
>>> a[::2]  # iterate over the whole list in 2-increments
[1,3,5]

The special case x[::-1] is a useful idiom for 'x reversed'.

>>> a[::-1]
[5,4,3,2,1]
link|flag
2 
much clearer, in my opinion, is the reversed() function. >>> list(reversed(range(4))) [3, 2, 1, 0] – Gorgapor Jan 2 at 18:35
1 
then how to write "this i a string"[::-1] in a better way? reversed doesnt seem to help – Berry Tsakala Jun 21 at 20:56
add / show 2 more comments
vote up 65 vote down

Readable regular expressions

In Python you can split a regular expression over multiple lines, name your matches and insert comments.

Example verbose syntax (from Dive into Python):

>>> pattern = """
... ^                   # beginning of string
... M{0,4}              # thousands - 0 to 4 M's
... (CM|CD|D?C{0,3})    # hundreds - 900 (CM), 400 (CD), 0-300 (0 to 3 C's),
...                     #            or 500-800 (D, followed by 0 to 3 C's)
... (XC|XL|L?X{0,3})    # tens - 90 (XC), 40 (XL), 0-30 (0 to 3 X's),
...                     #        or 50-80 (L, followed by 0 to 3 X's)
... (IX|IV|V?I{0,3})    # ones - 9 (IX), 4 (IV), 0-3 (0 to 3 I's),
...                     #        or 5-8 (V, followed by 0 to 3 I's)
... $                   # end of string
... """
>>> re.search(pattern, 'M', re.VERBOSE)

Example naming matches (from Regular Expression HOWTO)

>>> p = re.compile(r'(?P<word>\b\w+\b)')
>>> m = p.search( '(((( Lots of punctuation )))' )
>>> m.group('word')
'Lots'

You can also verbosely write a regex without using re.VERBOSE thanks to string literal concatenation.

>>> pattern = (
...     "^"                 # beginning of string
...     "M{0,4}"            # thousands - 0 to 4 M's
...     "(CM|CD|D?C{0,3})"  # hundreds - 900 (CM), 400 (CD), 0-300 (0 to 3 C's),
...                         #            or 500-800 (D, followed by 0 to 3 C's)
...     "(XC|XL|L?X{0,3})"  # tens - 90 (XC), 40 (XL), 0-30 (0 to 3 X's),
...                         #        or 50-80 (L, followed by 0 to 3 X's)
...     "(IX|IV|V?I{0,3})"  # ones - 9 (IX), 4 (IV), 0-3 (0 to 3 I's),
...                         #        or 5-8 (V, followed by 0 to 3 I's)
...     "$"                 # end of string
... )
>>> print pattern
"^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$"
link|flag
1 
Yes, but because you can't do it in grep or in most editors, a lot of people don't know it's there. The fact that other languages have an equivalent feature doesn't make it not a useful and little known feature of python – Mark Baker Oct 17 at 9:08
add / show 4 more comments
vote up 58 vote down

Sending values into generator functions. For example having this function:

def mygen():
  """Yield 5 until something else is passed back via send()"""
  a = 5
  while True:
    f = yield(a) #yield a and possibly get f in return
    if f is not None: a = f  #store the new value

You can:

>>> g = mygen()
>>> g.next()
5
>>> g.next()
5
>>> g.send(7)  #we send this back to the generator
7
>>> g.next() #now it will yield 7 until we send something else
7
link|flag
1 
You should test f against None, otherwise object considered false can't be used (for example 0). – sdefresne Sep 19 at 13:29
1 
if f -> if f is not None – J.F. Sebastian Nov 23 at 10:39
add / show 2 more comments
vote up 54 vote down

From 2.5 onwards dicts have a special method __missing__ that is invoked for missing items:

>>> class MyDict(dict):
...  def __missing__(self, key):
...   self[key] = rv = []
...   return rv
... 
>>> m = MyDict()
>>> m["foo"].append(1)
>>> m["foo"].append(2)
>>> dict(m)
{'foo': [1, 2]}

There is also a dict subclass in collections called defaultdict that does pretty much the same but calls a function without arguments for not existing items:

>>> from collections import defaultdict
>>> m = defaultdict(list)
>>> m["foo"].append(1)
>>> m["foo"].append(2)
>>> dict(m)
{'foo': [1, 2]}

I recommend converting such dicts to regular dicts before passing them to functions that don't expect such subclasses. A lot of code uses d[a_key] and catches KeyErrors to check if an item exists which would add a new item to the dict.

link|flag
add comment
vote up 47 vote down

Doctest: documentation and unit-testing at the same time.

Example extracted fom python documentation:

def factorial(n):
    """Return the factorial of n, an exact integer >= 0.

    If the result is small enough to fit in an int, return an int.
    Else return a long.

    >>> [factorial(n) for n in range(6)]
    [1, 1, 2, 6, 24, 120]
    >>> factorial(-1)
    Traceback (most recent call last):
        ...
    ValueError: n must be >= 0

    Factorials of floats are OK, but the float must be an exact integer:
    """

    import math
    if not n >= 0:
        raise ValueError("n must be >= 0")
    if math.floor(n) != n:
        raise ValueError("n must be exact integer")
    if n+1 == n:  # catch a value like 1e300
        raise OverflowError("n too large")
    result = 1
    factor = 2
    while factor <= n:
        result *= factor
        factor += 1
    return result

def _test():
    import doctest
    doctest.testmod()    

if __name__ == "__main__":
    _test()
link|flag
4 
Doctests are overrated and pollute the documentation. How often do you test a standalone function without any setUp() ? – a paid nerd May 11 at 4:34
add / show 1 more comment
vote up 45 vote down

Futures and the "With" Statement

There's a special module in Python called __future__. Some new language features end up in this module for testing, and to use them you have to explicitly import them from here. One such feature which is a favorite of mine is the "with" statement, which is currently present in __future__ in version 2.5, but will be part of the language in the soon-to-be-released 2.6 and 3.0 versions.

The reason it is in __future__ is because it makes both with and as keywords, which could break existing code.

I have used the "with" statement in 2.5 a lot because I think it's a very useful construct, here is a quick demo:

from __future__ import with_statement

with open('foo.txt', 'w') as f:
    f.write('hello!')

What's happening here behind the scenes, is that the "with" statement calls the special __enter__ and __exit__ methods on the file object. Exception details are also passed to __exit__ if any exception was raised from the with statement body, allowing for exception handling to happen there.

What this does for you in this particular case is that it guarantees that the file is closed when execution falls out of scope of the "with" statement's body, regardless if that occurs naturally or whether an exception was thrown. It is basically a way of abstracting away common error-handling code.

Other common use cases for this include locking with threads and database transactions.

For more information on how to use this and how to implement your own "with" statement compatible objects read PEP 343

link|flag
add / show 2 more comments
vote up 43 vote down

enumerate

Wrap an iterable with enumerate and it will yield the item along with it's index.

For example:


>>> a = ['a', 'b', 'c', 'd', 'e']
>>> for index, item in enumerate(a): print index, item
...
0 a
1 b
2 c
3 d
4 e
>>>
link|flag
3 
I'm surprised this isn't covered routinely in tutorials talking about python lists. – Draemon Nov 27 at 4:06
add / show 3 more comments
vote up 41 vote down

One line Variable value swapping

>>> a = 10
>>> b = 5
>>> a, b = b, a

>>> print a
5
>>> print b
10

a will have the value of b and so on.

This is a side effect of python packing and unpacking feature.

link|flag
add comment
vote up 39 vote down

The for...else idiom (see http://docs.python.org/ref/for.html )

for i in foo:
    if i == 0:
        break
else:
    print("i was never 0")

The "else" block will be normally executed at the end of the for loop, unless the break is called.

The above code could be emulated as follows:

found = False
for i in foo:
    if i == 0:
        found = True
        break
if not found: 
    print("i was never 0")
link|flag
10 
I think the for/else syntax is awkward. It "feels" as if the else clause should be executed if the body of the loop is never executed. – codeape Oct 10 at 6:44
1 
ah. Never saw that one! But I must say it is a bit of a misnomer. Who would expect the else block to execute only if break never does? I agree with codeape: It looks like else is entered for empty foos. – Daren Thomas Oct 13 at 17:31
add / show 6 more comments
vote up 35 vote down

Descriptors

They're the magic behind a whole bunch of core Python features.

When you use dotted access to look up a member (eg, x.y), Python first looks for the member in the instance dictionary. If it's not found, it looks for it in the class dictionary. If it finds it in the class dictionary, and the object implements the descriptor protocol, instead of just returning it, Python executes it. A descriptor is any class that implements the get, set, or del methods.

Here's how you'd implement your own (read-only) version of property using descriptors:

class Property(object):
    def __init__(self, fget):
        self.fget = fget

    def __get__(self, obj, type):
        if obj is None:
            return self
        return self.fget(obj)

and you'd use it just like the built-in property():

class MyClass(object):
    @Property
    def foo(self):
        return "Foo!"

Descriptors are used in Python to implement properties, bound methods, static methods, class methods and slots, amongst other things. Understanding them makes it easy to see why a lot of things that previously looked like Python 'quirks' are the way they are.

Raymond Hettinger has an excellent tutorial that does a much better job of describing them than I do.

link|flag
add comment
vote up 30 vote down

If you don't like using whitespace to denote scopes, you can use the C-style {} by issuing:

from __future__ import braces
link|flag
3 
That's evil. :) – Jason Baker Sep 22 at 4:32
3 
that's blasphemy! – Berk D. Demir Mar 22 at 13:24
10 
I think that we may have a syntactical mistake here, shouldn't that be "from past import braces"? – Bill K Apr 29 at 21:26
add / show 8 more comments
vote up 29 vote down

Dictionaries have a 'get()' method. If you do d['key'] and key isn't there, you get an exception. If you do d.get('key'), you get back None if 'key' isn't there. You can add a second argument to get that item back instead of None, eg: d.get('key', 0).

It's great for things like adding up numbers:

sum[value] = sum.get(value, 0) + 1

link|flag
3 
also, checkout the setdefault method. – Daren Thomas Oct 13 at 17:29
3 
also, checkout collections.defaultdict class. – J.F. Sebastian Nov 23 at 10:35
add comment
vote up 26 vote down

Creating new types at runtime

>>> NewType = type("NewType", (object,), {"x": "hello"})
>>> n = NewType()
>>> n.x
"hello"

which is exactly the same as

>>> class NewType(object):
>>>     x = "hello"
>>> n = NewType()
>>> n.x
"hello"

Probably not the most useful thing, but nice to know.

Edit: Fixed name of new type, should be NewType to be the exact same thing as with class statement.

link|flag
1 
This has a lot of potential for usefulness, e.g., JIT ORMs – Mark Cidade Sep 22 at 18:44
1 
I use it to generate HTML-Form classes based on a dynamic input. Very nice! – pi Mar 18 at 16:00
add comment
vote up 25 vote down

Named formatting, % -formatting takes a hash (also applies %i/%s etc. validation).

>>> print "The %(foo)s is %(bar)i." % {'foo': 'answer', 'bar':42}
The answer is 42.

>>> foo, bar = 'question', 123

>>> print "The %(foo)s is %(bar)i." % locals()
The question is 123.

And since locals() is also a hash, you can simply pass that as a dict and have % -substitions from your local variables. I think this is frowned upon, but simplifies things..

link|flag
4 
Will be phased out and eventually replaced with string's format() method. – Constantin Oct 5 at 9:41
add / show 3 more comments
vote up 24 vote down

Main messages :)

import this
# btw look at this module's source :)
link|flag
3 
the way the source is written goes against the zen! – hasen j Jan 1 at 5:39
add / show 5 more comments
vote up 24 vote down

Re-raising exceptions:

try:
    some_operation()
except SomeError, e:
    if is_fatal(e):
        raise
    handle_nonfatal(e)

The 'raise' statement with no arguments inside an error handler tells Python to re-raise the exception with the original traceback intact, allowing you to say "oh, sorry, sorry, I didn't mean to catch that, sorry, sorry."

If you wish to print, store or fiddle with the original traceback, you can get it with sys.exc_info(), and printing it like Python would is done with the 'traceback' module.

link|flag
1 
Maybe more magical, exc_info = sys.exc_info(); raise exc_info[0], exc_info[1], exc_info[2] is equivalent to this, but you can change those values around (e.g., change the exception type or message) – ianb May 5 at 20:27
add / show 3 more comments
vote up 20 vote down

To add more python modules (espcially 3rd party ones), most people seem to use PYTHONPATH environment variables or they add symlinks or directories in their site-packages directories. Another way, is to use *.pth files. Here's the official python doc's explanation:

"The most convenient way [to modify python's search path] is to add a path configuration file to a directory that's already on Python's path, usually to the .../site-packages/ directory. Path configuration files have an extension of .pth, and each line must contain a single path that will be appended to sys.path. (Because the new paths are appended to sys.path, modules in the added directories will not override standard modules. This means you can't use this mechanism for installing fixed versions of standard modules.)"

link|flag
add comment
vote up 18 vote down

Nested list comprehensions and generator expressions:

[(i,j) for i in range(3) for j in range(i) ]    
((i,j) for i in range(4) for j in range(i) )

These can replace huge chunks of nested-loop code.

link|flag
add / show 2 more comments
vote up 18 vote down

Exception else clause:

try:
  put_4000000000_volts_through_it(parrot)
except Voom:
  print "'E's pining!"
else:
  print "This parrot is no more!"
finally:
  end_sketch()

See http://docs.python.org/tut/node10.html

link|flag
add comment
vote up 18 vote down

Conditional Assignment

x = 3 if (y == 1) else 2

It does exactly what it sounds like: "assign 3 to x if y is 1, otherwise assign 2 to x". Note that the parens are not necessary, but I like them for readability. You can also chain it if you have something more complicated:

x = 3 if (y == 1) else 2 if (y == -1) else 1

Though at a certain point, it goes a little too far.

link|flag
2 
The assignment is not the special part. You could just as easily do something like: return 3 if (y == 1) else 2. – Brian Nov 9 at 5:39
2 
That alternate way is the first time I've seen obfuscated Python. – Craig McQueen Jun 9 at 4:18
add / show 2 more comments
vote up 18 vote down

property

class ClassName(object):
    """
    """    
    def __init__(self, foo):
        """
        """
        self.foo = foo # read-write property
        self.bar = bar # simple attribute

    def _set_foo(self, value):
        self._foo = value

    def _get_foo(self):
        return self._foo

    foo = property(_get_foo, _set_foo)

In Python 2.6 and 3.0:

class C(object):
    @property
    def x(self):
        return self._x

    @x.setter
    def x(self, value):
        self._x = value

    @x.deleter
    def x(self):
        del self._x

class D(C):
    @C.x.getter
    def x(self):
        return self._x * 2

    @x.setter
    def x(self, value):
        self._x = value / 2
link|flag
add comment
vote up 17 vote down

Python's advanced slicing operation has a barely known syntax element, the ellipsis:

>>> class C(object):
...  def __getitem__(self, item):
...   return item
... 
>>> C()[1:2, ..., 3]
(slice(1, 2, None), Ellipsis, 3)

Unfortunately it's barely useful as the ellipsis is only supported if tuples are involved.

link|flag
1 
see stackoverflow.com/questions/118370/… for more info – molasses Sep 23 at 0:33
add comment
vote up 17 vote down

The simple fact that you can unpack a list or a dictionary as function arguments using * and **.

For example :

def drawPoint(x,y):
    # do some magic

point1 = (3, 4)
point2 = {'y':3, 'x':2}

drawPoint(*point1)
drawPoint(**point2)

Very useful shortcut since list, tuple and dicts are overused containers (for the best).

link|flag
add / show 1 more comment
vote up 16 vote down

Interactive Interpreter Tab Completion

try:
    import readline
except ImportError:
    print "Unable to load readline module."
else:
    import rlcompleter
    readline.parse_and_bind("tab: complete")


>>> class myclass:
...    def function(self):
...       print "my function"
... 
>>> class_instance = myclass()
>>> class_instance.<TAB>
class_instance.__class__   class_instance.__module__
class_instance.__doc__     class_instance.function
>>> class_instance.f<TAB>unction()

You will also have to set a PYTHONSTARTUP environment variable.

link|flag
2 
IPython gives you this plus tons of other neat stuff – akaihola Jan 10 at 3:47
add / show 1 more comment
vote up 16 vote down

Referencing a list comprehension as it is being built...

You can reference a list comprehension as it is being built by the symbol '_[1]'. For example, the following function unique-ifies a list of elements without changing their order by referencing its list comprehension.

def unique(my_list):
    return [x for x in my_list if x not in locals()['_[1]']]
link|flag
1 
not a good idea for algorithmic as well as practical reasons. Algorithmically, this will give you a linear search of the list so far on every iteration, changing your O(n) loop into O(n**2); much better to just make the list into a set afterwards. Practically speaking, it's undocumented, may change, and probably doesn't work in ironpython/jython/pypy . – llimllib Jun 18 at 4:04
4 
This is an undocumented implementation detail, not a hidden feature. It would be a bad idea to rely on this. – Marius Gedminas Jun 18 at 18:48
add / show 3 more comments
1 2 3 4 next

Your Answer

Get an OpenID
or

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