vote up 248 vote down star
419

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

113 Answers

vote up 18 vote down

Built-in base64, zlib, and rot13 codecs

Strings have encode and decode methods. Usually this is used for converting str to unicode and vice versa, e.g. with u = s.encode('utf8'). But there are some other handy builtin codecs. Compression and decompression with zlib (and bz2) is available without an explicit import:

>>> s = 'a' * 100
>>> s.encode('zlib')
'x\x9cKL\xa4=\x00\x00zG%\xe5'

Similarly you can encode and decode base64:

>>> 'Hello world'.encode('base64')
'SGVsbG8gd29ybGQ=\n'
>>> 'SGVsbG8gd29ybGQ=\n'.decode('base64')
'Hello world'

And, of course, you can rot13:

>>> 'Secret message'.encode('rot13')
'Frperg zrffntr'
link|flag
2  
Sadly this will stop working in Python 3 – Marius Gedminas Jun 18 at 18:51
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 17 vote down

set/frozenset

Probably an easily overlooked python builtin is "set/frozenset".

Useful when you have a list like this, [1,2,1,1,2,3,4] and only want the uniques like this [1,2,3,4].

Using set() that's exactly what you get:

>>> x = [1,2,1,1,2,3,4] 
>>> 
>>> set(x) 
set([1, 2, 3, 4]) 
>>>
>>> for i in set(x):
...     print i
...
1
2
3
4

And of course to get the number of uniques in a list:

>>> len(set([1,2,1,1,2,3,4]))
4

You can also find if a list is a subset of another list using, suprise, set().isasubset()

>>> set([1,2,3,4]).isasubset([0,1,2,3,4,5])
True

For more details: http://docs.python.org/library/stdtypes.html#set

link|flag
vote up 17 vote down

Getter functions in module operator

The functions attrgetter() and itemgetter() in module operator can be used to generate fast access functions for use in sorting and search objects and dictionaries

Chapter 6.7 in the Python Library Docs

link|flag
show 2 more comments
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 at 3:50
vote up 16 vote down

Negative round

The round() function rounds a float number to given precision in decimal digits, but precision can be negative:

>>> str(round(1234.5678, -2))
'1200.0'
>>> str(round(1234.5678, 2))
'1234.57'

Note: round() always returns a float, str() used in the above example because floating point math is inexact, and under 2.x the second example can print as 1234.5700000000001. Also see the decimal module.

link|flag
vote up 15 vote down

Interleaving if and for in list comprehensions

>>> [(x, y) for x in range(4) if x % 2 == 1 for y in range(4)]
[(1, 0), (1, 1), (1, 2), (1, 3), (3, 0), (3, 1), (3, 2), (3, 3)]

I never realized this until I learned Haskell.

link|flag
show 1 more comment
vote up 15 vote down

Operator overloading for the set builtin:

>>> a = set([1,2,3,4])
>>> b = set([3,4,5,6])
>>> a | b # Union
{1, 2, 3, 4, 5, 6}
>>> a & b # Intersection
{3, 4}
>>> a < b # Subset
False
>>> a - b # Difference
{1, 2}
>>> a ^ b # Symmetric Difference
{1, 2, 5, 6}

More detail from the standard library reference: Set Types

link|flag
vote up 14 vote down

ROT13 is a valid encoding for source code, when you use the right coding declaration at the top of the code file:

#!/usr/bin/env python
# -*- coding: rot13 -*-

cevag "Uryyb fgnpxbiresybj!".rapbqr("rot13")
link|flag
1  
Great! Notice how byte strings are taken literally, but unicode strings are decoded: try cevag h"Uryyb fgnpxbiresybj!" – kaizer.se Oct 4 at 1:12
vote up 13 vote down

Obviously, the antigravity module. xkcd #353

link|flag
2  
Probably my most used module. After the soul module, of course. – sli Dec 30 at 9:43
7  
Which actually works. Try putting "import antigravity" in the newest Py3K. – Andrew Szeto Jun 5 at 9:11
vote up 13 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
3  
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
14  
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
show 3 more comments
vote up 13 vote down

An interpreter within the interpreter

The standard library's code module let's you include your own read-eval-print loop inside a program, or run a whole nested interpreter. E.g. (copied my example from here)

$ python
Python 2.5.1 (r251:54863, Jan 17 2008, 19:35:17) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> shared_var = "Set in main console"
>>> import code
>>> ic = code.InteractiveConsole({ 'shared_var': shared_var })
>>> try:
...     ic.interact("My custom console banner!")
... except SystemExit, e:
...     print "Got SystemExit!"
... 
My custom console banner!
>>> shared_var
'Set in main console'
>>> shared_var = "Set in sub-console"
>>> sys.exit()
Got SystemExit!
>>> shared_var
'Set in main console'

This is extremely useful for situations where you want to accept scripted input from the user, or query the state of the VM in real-time.

TurboGears uses this to great effect by having a WebConsole from which you can query the state of you live web app.

link|flag
vote up 12 vote down
>>> from functools import partial
>>> bound_func = partial(range, 0, 10)
>>> bound_func()
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> bound_func(2)
[0, 2, 4, 6, 8]

not really a hidden feature but partial is extremely useful for having late evaluation of functions.

you can bind as many or as few parameters in the initial call to partial as you want, and call it with any remaining parameters later (in this example i've bound the begin/end args to range, but call it the second time with a step arg)

link|flag
1  
I wish curryfication add a decent operator in python though. – Paul Mar 17 at 1:13
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 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 9 vote down

Python has GOTO

...and it's implemented by external pure-Python module :)

from goto import goto, label
for i in range(1, 10):
    for j in range(1, 20):
        for k in range(1, 30):
            print i, j, k
            if k == 3:
                goto .end # breaking out from a deeply nested loop
label .end
print "Finished"
link|flag
4  
Maybe it is best that this feature remains hidden. – James McMahon Oct 16 '08 at 12:32
2  
Well, the actual hidden feature here is mechanism used to implement GOTO. – Constantin Oct 16 '08 at 15:21
2  
@shylent: Exceptions should be exceptional. For that reason they are optimized for the case that they are not thrown. If you expect the condition to occur in the course of normal processing, you should use another method – TokenMacGuy Nov 17 at 18:57
show 2 more comments
vote up 9 vote down

Implicit concatenation:

>>> print "Hello " "World"
Hello World

Useful when you want to make a long text fit on several lines in a script:

hello = "Greaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa Hello " \
"Word"

or

hello = ("Greaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa Hello " 
"Word")
link|flag
1  
To make a long text fit on several lines, you can also use the triple quotes. – Rafał Dowgird Sep 19 '08 at 13:48
2  
Well, a PEP had been set to get rid of it but Guido decided finally to keep it. I guess it's more useful than hateful. Actually the drawbacks are no so dangerous (no safety issues) and for long strings, it helps a lot. – e-satis Sep 22 '08 at 16:30
1  
This is probably my favorite feature of Python. You can forget correct syntax and it's still correct syntax. – sli Dec 30 at 9:47
show 4 more comments
vote up 9 vote down

re can call functions!

The fact that you can call a function every time something matches a regular expression if very handy. Here I have a sample of replacing every "Hello" with "Hi," and "there" with "Fred", etc.

import re

def Main(haystack):
  # List of from replacements, can be a regex
  finds = ('Hello', 'there', 'Bob')
  replaces = ('Hi,', 'Fred,', 'how are you?')

  def ReplaceFunction(matchobj):
    for found, rep in zip(matchobj.groups(), replaces):
      if found != None:
        return rep

    # log error
    return matchobj.group(0)

  named_groups = [ '(%s)' % find for find in finds ]
  ret = re.sub('|'.join(named_groups), ReplaceFunction, haystack)
  print ret

if __name__ == '__main__':
  str = 'Hello there Bob'
  Main(str)
  # Prints 'Hi, Fred, how are you?'
link|flag
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 8 vote down

The Python Interpreter

>>>

Maybe not lesser known, but certainly one of my favorite features of Python.

link|flag
1  
The #1 reason Python is better than everything else. </fanboi> – sli Dec 30 at 9:48
1  
Everything else you've seen. </smuglispweenie> – Matt Curtis Jun 29 at 13:23
show 1 more comment
vote up 8 vote down

Using keyword arguments as assignments

Sometimes one wants to build a range of functions depending on one or more parameters. However this might easily lead to closures all referring to the same object and value:

funcs = [] 
for k in range(10):
     funcs.append( lambda: k)

>>> funcs[0]()
9
>>> funcs[7]()
9

This behaviour can be avoided by turning the lambda expression into a function depending only on its arguments. A keyword parameter stores the current value that is bound to it. The function call doesn't have to be altered:

funcs = [] 
for k in range(10):
     funcs.append( lambda k = k: k)

>>> funcs[0]()
0
>>> funcs[7]()
7
link|flag
vote up 7 vote down

Metaclasses

of course :-) http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python

link|flag
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 7 vote down

dict's constructor accepts keyword arguments:

>>> dict(foo=1, bar=2)
{'foo': 1, 'bar': 2}
link|flag
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 6 vote down

Taking advantage of python's dynamic nature to have an apps config files in python syntax. For example if you had the following in a config file:

{
  "name1": "value1",
  "name2": "value2"
}

Then you could trivially read it like:

config = eval(open("filename").read())
link|flag
4  
I can see this becoming a security issue. – Richard Waite Dec 1 '08 at 19:56
1  
It could be, but sometimes it's not. In those cases, it's awesome. – recursive Jan 1 at 9:30
4  
That's a bold action for even non-hostile environments. eval() is a loaded gun, that needs intensive caution while handling. On the other hand, using JSON (now in 2.6 stdlib) is much more secure and portable for carrying configuration. – Berk D. Demir Mar 22 at 18:46
show 4 more comments
vote up 6 vote down

While debugging complex data structures pprint module comes handy.

Quoting from the docs..

>>> import pprint    
>>> stuff = sys.path[:]
>>> stuff.insert(0, stuff)
>>> pprint.pprint(stuff)
[<Recursion on list with id=869440>,
 '',
 '/usr/local/lib/python1.5',
 '/usr/local/lib/python1.5/test',
 '/usr/local/lib/python1.5/sunos5',
 '/usr/local/lib/python1.5/sharedmodules',
 '/usr/local/lib/python1.5/tkinter']
link|flag
2  
pprint is also good for printing dictionaries in doctests, since it always sorts the output by keys – akaihola Jan 10 at 4:06
vote up 6 vote down

i personally love the 3 different quotes

str = "im a string 'but still i can use quotes' inside myself!"
str = """ for some messy multi line strings 
such as
<html>
<head> ... </head>"""

also cool: not having to escape regexes, avoiding horrible backslash salad by using raw strings:

str2 = r"\n" 
print str2
>> \n

and my fav:

getting values from a dict, without having to worry if the key exists, and it even sets the key for you! (i love you python guys!)

the 3 times happyness dict package:


a = {}
print a.setdefault("mykey",20) 
# prints value of a['mykey'] if key exists
# prints 20, if key doesnt exist
# and even adds 20 to the dict in that case
# this has made so many parts of my code so much nicer!
link|flag
1  
Four different quotes, if you include ''' – grawity Aug 26 at 17:07
show 1 more comment
vote up 6 vote down

Not very hidden, but functions have attributes:

def doNothing():
    pass

doNothing.monkeys = 4
print doNothing.monkeys
4
link|flag
vote up 6 vote down

Assigning and deleting slices:

>>> a = range(10)
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> a[:5] = [42]
>>> a
[42, 5, 6, 7, 8, 9]
>>> a[:1] = range(5)
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> del a[::2]
>>> a
[1, 3, 5, 7, 9]
>>> a[::2] = a[::-2]
>>> a
[9, 3, 5, 7, 1]

Note: when assigning to extended slices (s[start:stop:step]), the assigned iterable must have the same length as the slice.

link|flag

Your Answer

Get an OpenID
or

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