vote up 255 vote down star
432

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
8  
Okay, this is an awesome topic – Teifion Sep 19 '08 at 11:56
show 4 more comments

117 Answers

vote up 1 vote down

Objects in boolean context

Empty tuples, lists, dicts, strings and many other objects are equivalent to False in boolean context (and non-empty are equivalent to True).

empty_tuple = ()
empty_list = []
empty_dict = {}
empty_string = ''
empty_set = set()
if empty_tuple or empty_list or empty_dict or empty_string or empty_set:
  print 'Never happens!'

This allows logical operations to return one of it's operands instead of True/False, which is useful in some situations:

s = t or "Default value" # s will be assigned "Default value"
                         # if t is false/empty/none
link|flag
show 1 more comment
vote up 6 vote down

"Unpacking" to function parameters

def foo(a, b, c):
        print a, b, c

bar = (3, 14, 15)
foo(*bar)

When executed prints:

3 14 15
link|flag
vote up 1 vote down

Tuple unpacking in for loops, list comprehensions and generator expressions:

>>> l=[(1,2),(3,4)]
>>> [a+b for a,b in l ] 
[3,7]

Useful in this idiom for iterating over (key,data) pairs in dictionaries:

d = { 'x':'y', 'f':'e'}
for name, value in d.items():  # one can also use iteritems()
   print "name:%s, value:%s" % (name,value)

prints:

name:x, value:y
name:f, value:e
link|flag
vote up 4 vote down

You can build up a dictionary from a set of length-2 sequences. Extremely handy when you have a list of values and a list of arrays.

>>> dict([ ('foo','bar'),('a',1),('b',2) ])
{'a': 1, 'b': 2, 'foo': 'bar'}

>>> names = ['Bob', 'Marie', 'Alice']
>>> ages = [23, 27, 36]
>>> dict(zip(names, ages))
{'Alice': 36, 'Bob': 23, 'Marie': 27}
link|flag
show 1 more comment
vote up 9 vote down

Ternary operator

>>> 'ham' if True else 'spam'
'ham'
>>> 'ham' if False else 'spam'
'spam'

This was added in 2.5, prior to that you could use:

>>> True and 'ham' or 'spam'
'ham'
>>> False and 'ham' or 'spam'
'spam'

However, if the values you want to work with would be considered false, there is a difference:

>>> [] if True else 'spam'
[]
>>> True and [] or 'spam'
'spam'
link|flag
show 2 more comments
vote up 72 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
9  
I'm surprised this isn't covered routinely in tutorials talking about python lists. – Draemon Nov 27 '08 at 4:06
1  
And all this time I was coding this way: for i in range(len(a)): ... and then using a[i] to get the current item. – fmartin Jun 22 at 16:35
show 5 more comments
vote up 1 vote down

__getattr__()

getattr is a really nice way to make generic classes, which is especially useful if you're writing an API. For example, in the FogBugz Python API, getattr is used to pass method calls on to the web service seamlessly:

class FogBugz:
    ...

    def __getattr__(self, name):
        # Let's leave the private stuff to Python
        if name.startswith("__"):
            raise AttributeError("No such attribute '%s'" % name)

        if not self.__handlerCache.has_key(name):
            def handler(**kwargs):
                return self.__makerequest(name, **kwargs)
            self.__handlerCache[name] = handler
        return self.__handlerCache[name]
    ...

When someone calls FogBugz.search(q='bug'), they don't get actually call a search method. Instead, getattr handles the call by creating a new function that wraps the makerequest method, which crafts the appropriate HTTP request to the web API. Any errors will be dispatched by the web service and passed back to the user.

link|flag
show 1 more comment
vote up 11 vote down
  • The underscore
>>> (a for a in xrange(10000))
<generator object at 0x81a8fcc>
>>> b = 'blah'
>>> _
<generator object at 0x81a8fcc>
  • AtExit
>>> import atexit
  • webbrowser
>>> import webbrowser
- pydoc's built-in http server
>>> import pydoc
>>> pydoc.gui()
link|flag
1  
worth noting that the _ is available only in interactive mode. when running scripts from a file, _ has no special meaning. – TokenMacGuy Nov 17 at 18:52
show 1 more comment
vote up 30 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
4  
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 '08 at 5:39
4  
That alternate way is the first time I've seen obfuscated Python. – Craig McQueen Jun 9 at 4:18
3  
Kylebrooks: It doesn't in that case, boolean operators short circuit. It will only evaluate 2 if bool(3) == False. – RoadieRich Jul 12 at 0:23
2  
this backwards-style coding confusing me. something like x = ((y == 1) ? 3 : 2) makes more sense to me – Mark Oct 20 at 7:12
show 3 more comments
vote up 10 vote down

Python sort function sorts tuples correctly:

a = [(2, "b"), (1, "a"), (2, "a"), (3, "c")]
print sorted(a)
#[(1, 'a'), (2, 'a'), (2, 'b'), (3, 'c')]

Useful if you want to sort a list of persons after age and then name.

link|flag
1  
This is a consequence of tuple comparison working correctly in general, i.e. (1, 2) < (1, 3). – Constantin Oct 5 '08 at 9:43
1  
This is useful for version tuples: (1, 9) < (1, 10). – Roger Pate Jun 27 at 23:00
vote up 1 vote down
class AttrDict(dict):

    def __getattr__(self, name):
        if name in self:
            return self[name]
        raise AttributeError('%s not found' % name)

    def __setattr__(self, name, value):
        self[name] = value

    def __delattr__(self, name):
        del self[name]

person = AttrDict({'name': 'John Doe', 'age': 66})
print person['name']
print person.name

person.name = 'Frodo G'
print person.name

del person.age

print person
link|flag
vote up 16 vote down

Many people don't know about the "dir" function. It's a great way to figure out what an object can do from the interpreter. For example, if you want to see a list of all the string methods:

>>> dir("foo")
['__add__', '__class__', '__contains__', (snipped a bunch), 'title',
 'translate', 'upper', 'zfill']

And then if you want more information about a particular method you can call "help" on it.

>>> help("foo".upper)
    Help on built-in function upper:

upper(...)
    S.upper() -> string

    Return a copy of the string S converted to uppercase.
link|flag
2  
dir() is essential for development. For large modules I've enhanced it to add filtering. See pixelbeat.org/scripts/inpy – pixelbeat Oct 12 '08 at 22:46
1  
You can also directly use help: help('foo') – yuriks Dec 26 '08 at 18:44
1  
If you use IPython, you can append a question mark to get help on a variable/method. – akaihola Jan 10 '09 at 3:50
vote up 55 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
31  
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 '08 at 6:44
7  
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 '08 at 17:31
2  
Anyone remember the FOR var … NEXT var … END FOR var of Sinclair QL's SuperBasic? Everything between NEXT and END FOR would execute at the end of the loop, unless an EXIT FOR was issued. That syntax was cleaner :) – ΤΖΩΤΖΙΟΥ Jan 15 at 12:28
5  
seems like the keyword should be finally, not else – Jim Robert Jun 25 at 16:31
3  
Except finally is already used in a way where that suite is always executed. – Roger Pate Jun 27 at 22:34
show 4 more comments
vote up 22 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
vote up 32 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
vote up 1 vote down

unzip un-needed in Python

Someone blogged about Python not having an unzip function to go with zip(). unzip is straight-forward to calculate because:

>>> t1 = (0,1,2,3)
>>> t2 = (7,6,5,4)
>>> [t1,t2] == zip(*zip(t1,t2))
True

On reflection though, I'd rather have an explicit unzip().

link|flag
vote up 17 vote down

Tuple unpacking:

>>> (a, (b, c), d) = [(1, 2), (3, 4), (5, 6)]
>>> a
(1, 2)
>>> b
3
>>> c, d
(4, (5, 6))

More obscurely, you can do this in function arguments (in Python 2.x; Python 3.x will not allow this anymore):

>>> def addpoints((x1, y1), (x2, y2)):
...     return (x1+x2, y1+y2)
>>> addpoints((5, 0), (3, 5))
(8, 5)
link|flag
1  
For what it's worth, tuple unpacking in function definitions is going aaway in python 3.0 – Ryan Sep 29 '08 at 1:18
1  
why is it going away? – interstar Nov 23 '08 at 11:47
1  
Mostly because it makes the implementation really nasty, as far as I understand. (Eg.in inspect.getargs in the standard library - the normal path (no tuple args) is about 10 lines, and there are about 30 extra lines for handling tuple args (which only gets used occasionally).) Makes me sad though. – wilberforce Nov 25 '08 at 14:17
vote up 34 vote down

Be careful with mutable default arguments

>>> def foo(x=[]):
...     x.append(1)
...     print x
... 
>>> foo()
[1]
>>> foo()
[1, 1]
>>> foo()
[1, 1, 1]
link|flag
3  
That's definitely one of the more nasty hidden features. I've run into it from time to time. – Torsten Marek Sep 23 '08 at 17:42
2  
I found this a lot easier to understand when I learned that the default arguments live in a tuple that's an attribute of the function, e.g. foo.func_defaults. Which, being a tuple, is immutable. – Robert Rossney Nov 5 at 20:43
show 1 more comment
vote up 38 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
9  
Will be phased out and eventually replaced with string's format() method. – Constantin Oct 5 '08 at 9:41
1  
Named formatting is very useful for translators as they tend to just see the format string without the variable names for context – pixelbeat Oct 12 '08 at 22:45
1  
Appears to work in python 3.0.1 (needed to add parenttheses around print call). – Pasi Savolainen Jul 1 at 11:32
1  
a hash, huh? I see where you came from. – shylent Nov 14 at 13:45
show 1 more comment
vote up 4 vote down

Builtin methods or functions don't implement the descriptor protocol which makes it impossible to do stuff like this:

>>> class C(object):
...  id = id
... 
>>> C().id()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: id() takes exactly one argument (0 given)

However you can create a small bind descriptor that makes this possible:

>>> from types import MethodType
>>> class bind(object):
...  def __init__(self, callable):
...   self.callable = callable
...  def __get__(self, obj, type=None):
...   if obj is None:
...    return self
...   return MethodType(self.callable, obj, type)
... 
>>> class C(object):
...  id = bind(id)
... 
>>> C().id()
7414064
link|flag
vote up 22 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
3  
see stackoverflow.com/questions/118370/… for more info – molasses Sep 23 '08 at 0:33
vote up 7 vote down

__slots__ is a nice way to save memory, but it's very hard to get a dict of the values of the object. Imagine the following object:

class Point(object):
    __slots__ = ('x', 'y')

Now that object obviously has two attributes. Now we can create an instance of it and build a dict of it this way:

>>> p = Point()
>>> p.x = 3
>>> p.y = 5
>>> dict((k, getattr(p, k)) for k in p.__slots__)
{'y': 5, 'x': 3}

This however won't work if point was subclassed and new slots were added. However Python automatically implements __reduce_ex__ to help the copy module. This can be abused to get a dict of values:

>>> p.__reduce_ex__(2)[2][1]
{'y': 5, 'x': 3}
link|flag
show 1 more comment
vote up 55 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
13  
That's evil. :) – Jason Baker Sep 22 '08 at 4:32
3  
>>> from future import braces File "<stdin>", line 1 SyntaxError: not a chance :P – Benjamin W. Smith Sep 22 '08 at 19:55
6  
that's blasphemy! – Berk D. Demir Mar 22 at 13:24
53  
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
7  
from cruft import braces – Phillip Oldham Jun 18 at 7:16
show 12 more comments
vote up 1 vote down

If you are using descriptors on your classes Python completely bypasses __dict__ for that key which makes it a nice place to store such values:

>>> class User(object):
...  def _get_username(self):
...   return self.__dict__['username']
...  def _set_username(self, value):
...   print 'username set'
...   self.__dict__['username'] = value
...  username = property(_get_username, _set_username)
...  del _get_username, _set_username
... 
>>> u = User()
>>> u.username = "foo"
username set
>>> u.__dict__
{'username': 'foo'}

This helps to keep dir() clean.

link|flag
vote up 87 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
show 2 more comments
vote up 1 vote down

If you use exec in a function the variable lookup rules change drastically. Closures are no longer possible but Python allows arbitrary identifiers in the function. This gives you a "modifiable locals()" and can be used to star-import identifiers. On the downside it makes every lookup slower because the variables end up in a dict rather than slots in the frame:

>>> def f():
...  exec "a = 42"
...  return a
... 
>>> def g():
...  a = 42
...  return a
... 
>>> import dis
>>> dis.dis(f)
  2           0 LOAD_CONST               1 ('a = 42')
              3 LOAD_CONST               0 (None)
              6 DUP_TOP             
              7 EXEC_STMT           

  3           8 LOAD_NAME                0 (a)
             11 RETURN_VALUE        
>>> dis.dis(g)
  2           0 LOAD_CONST               1 (42)
              3 STORE_FAST               0 (a)

  3           6 LOAD_FAST                0 (a)
              9 RETURN_VALUE
link|flag
1  
Just to nitpick: that only applies to bare exec. If you specify the namespace for it to use, eg "d={}; exec "a=42" in d" this won't happen. – Brian Sep 21 '08 at 22:48
vote up 41 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
8  
also, checkout the setdefault method. – Daren Thomas Oct 13 '08 at 17:29
5  
also, checkout collections.defaultdict class. – J.F. Sebastian Nov 23 '08 at 10:35
vote up 32 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
show 1 more comment
vote up 4 vote down

Some of the builtin favorites, map(), reduce(), and filter(). All extremely fast and powerful.

link|flag
2  
@sil: map still exists in Python 3, as does filter, and reduce exists as functools.reduce. – kaizer.se Oct 4 at 1:17
show 5 more comments
vote up 59 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 are part of the language in the 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
show 3 more comments

Your Answer

Get an OpenID
or

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