up vote 1358 down vote favorite
1982
share [g+] share [fb]

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 a title as the first line.

Quick links to answers:

link|improve this question
99  
Okay, this is an awesome topic – Teifion Sep 19 '08 at 11:56
13  
Awesome! Saved for future reading! – Jonathanb Sep 17 '09 at 18:53
22  
Why the hell is this question being closed??? – missingfaktor Jul 14 '10 at 4:38
33  
Because of the people who secretly want to destroy stackoverflow by removing any content short of real-world case scenarios of actual fizzbuzz problems. – bobobobo Jul 14 '10 at 12:21
51  
On-Topic Police, get a life. Is the question useful? Yes? Does deleting it make SO a better site? No. I think questions beyond a certain longevity should be immune from votes like this. – artlung Jul 15 '10 at 10:02
show 22 more comments
feedback

protected by Will Jul 16 '10 at 2:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

190 Answers

1 2 3 4 5 7

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|improve this answer
3  
So often I have to round a number to a multiple. Eg, round 17 to a multiple of 5 (15). But Python's round doesn't let me do that! IMO, it should be structured as round(num, precision=1) - round "num" to the nearest multiple of "precision" – Wallacoloo May 16 '10 at 6:56
3  
@wallacoloo what's the matter with (17 / 5)*5 ? Isn't it short and expressive? – silviot Aug 26 '10 at 19:39
1  
@silviot try that with (19 / 5)*5. 19 rounded to the nearest 5 should be 20, right? But that seems to return 15. Also, that's relying on the integer division rules of Python 2.x. It won't work the same in 3.x. The most concise, correct solution imo is: roundNearest = lambda n, m: round(float(n)/m)*m – Wallacoloo Dec 17 '10 at 1:21
6  
Or in general, roundNearest = lambda n, m: (n + (m/2)) / m * m. It's twice as fast as using round(float) on my system. – Mikel Jan 23 '11 at 23:50
show 1 more comment
feedback

Multiplying by a boolean

One thing I'm constantly doing in web development is optionally printing HTML parameters. We've all seen code like this in other languages:

class='<% isSelected ? "selected" : "" %>'

In Python, you can multiply by a boolean and it does exactly what you'd expect:

class='<% "selected" * isSelected %>'

This is because multiplication coerces the boolean to an integer (0 for False, 1 for True), and in python multiplying a string by an int repeats the string N times.

link|improve this answer
8  
+1, that's a nice one. OTOH, as it's just a bit arcane, it's easy to see why you might not want to do this, for readability reasons. – TokenMacGuy Dec 30 '09 at 23:38
23  
you could also use something like: ('not-selected', 'selected')[isSelected] if you need an option for False value too.. – redShadow Jul 19 '10 at 13:37
6  
Proper conditional expressions were added to Python in 2.5. If you're using 2.5+ you probably shouldn't use these tricks for readability reasons. – Peter Graham Jun 30 '11 at 2:12
show 1 more comment
feedback

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|improve this answer
13  
see stackoverflow.com/questions/118370/… for more info – molasses Sep 23 '08 at 0:33
3  
Actually, the ellipsis is quite useful when dealing with multi-dimensional arrays from numpy module. – Denilson Sá Aug 20 '10 at 20:33
show 2 more comments
feedback

re can call functions!

The fact that you can call a function every time something matches a regular expression is 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|improve this answer
2  
This is insane. I had no idea this existed. awesome. thanks a lot. – Jeffrey Jose May 27 '10 at 19:13
2  
Never seen this before, but a better example might be re.sub('[aeiou]', lambda match: match.group().upper()*3, 'abcdefghijklmnopqrstuvwxyz') – Don Spaulding Mar 25 '11 at 17:14
feedback

Multi line strings

One approach is to use backslashes:

>>> sql = "select * from some_table \
where id > 10"
>>> print sql
select * from some_table where id > 10

Another is to use the triple-quote:

>>> sql = """select * from some_table 
where id > 10"""
>>> print sql
select * from some_table where id > 10

Problem with those is that they are not indented (look poor in your code). If you try to indent, it'll just print the white-spaces you put.

A third solution, which I found about recently, is to divide your string into lines and surround with parentheses:

>>> sql = ("select * from some_table " # <-- no comma, whitespace at end
           "where id > 10 "
           "order by name") 
>>> print sql
select * from some_table where id > 10 order by name

note how there's no comma between lines (this is not a tuple), and you have to account for any trailing/leading white spaces that your string needs to have. All of these work with placeholders, by the way (such as "my name is %s" % name).

link|improve this answer
1  
That's a gooood thing when writing long stuff in code, while keeping a low line length! – Joël Oct 27 '11 at 15:45
show 1 more comment
feedback

tuple unpacking in python 3

in python 3, you can use a syntax identical to optional arguments in function definition for tuple unpacking:

>>> first,second,*rest = (1,2,3,4,5,6,7,8)
>>> first
1
>>> second
2
>>> rest
[3, 4, 5, 6, 7, 8]

but a feature less known and more powerful allows you to have an unknown number of elements in the middle of the list:

>>> first,*rest,last = (1,2,3,4,5,6,7,8)
>>> first
1
>>> rest
[2, 3, 4, 5, 6, 7]
>>> last
8
link|improve this answer
5  
Quite haskellish :) cool one :) – pielgrzym Mar 26 '11 at 11:27
2  
i like it , bummer it doesn't work in 2.7.. – wim Jul 26 '11 at 3:59
feedback

This answer has been moved into the question itself, as requested by many people.

link|improve this answer
2  
+1 for amazingness, time and dedication here. – lyrae Jul 16 '10 at 22:16
11  
Can this answer be accepted, or be moved into the question? It would be nice to have such index at the top. – Denilson Sá Sep 24 '10 at 2:02
feedback
  • The underscore, it contains the most recent output value displayed by the interpreter (in an interactive session):
>>> (a for a in xrange(10000))
<generator object at 0x81a8fcc>
>>> b = 'blah'
>>> _
<generator object at 0x81a8fcc>
  • A convenient Web-browser controller:
>>> import webbrowser
>>> webbrowser.open_new_tab('http://www.stackoverflow.com')
  • A built-in http server. To serve the files in the current directory:
python -m SimpleHTTPServer 8000
  • AtExit
>>> import atexit
link|improve this answer
2  
Why not just SimpleHTTPServer? – Andrew Szeto Jul 9 '09 at 20:17
15  
worth noting that the _ is available only in interactive mode. when running scripts from a file, _ has no special meaning. – TokenMacGuy Nov 17 '09 at 18:52
1  
@TokenMacGuy: Actually, you can define _ to be a variable in a file (just in case you do want to go for obfuscated Python). – asmeurer Dec 28 '10 at 5:24
2  
@asmeurer I frequently use _ as a name for variables I do not care about (eg for _, desired_value, _ in my_tuple_with_some_irrelevant_values). Yes, ike a prologger :) – brandizzi Sep 28 '11 at 18:51
show 1 more comment
feedback

pow() can also calculate (x ** y) % z efficiently.

There is a lesser known third argument of the built-in pow() function that allows you to calculate xy modulo z more efficiently than simply doing (x ** y) % z:

>>> x, y, z = 1234567890, 2345678901, 17
>>> pow(x, y, z)            # almost instantaneous
6

In comparison, (x ** y) % z didn't given a result in one minute on my machine for the same values.

link|improve this answer
3  
@buzkor: it's pretty useful for cryptography, too – Agos Jul 30 '10 at 23:23
2  
Remember, this is the built-in pow() function. This is not the math.pow() function, which accepts only 2 arguments. – Denilson Sá Aug 4 '10 at 18:59
3  
The cool thing here is that you can override this behavior in your own objects using __pow__. You just have to define an optional third argument. And for more information on where this would be used, see en.wikipedia.org/wiki/Modular_exponentiation. – asmeurer Dec 28 '10 at 5:30
show 4 more comments
feedback

You can easily transpose an array with zip.

a = [(1,2), (3,4), (5,6)]
zip(*a)
# [(1, 3, 5), (2, 4, 6)]
link|improve this answer
6  
Basically, zip(*a) unzips a. So if b = zip(a), then a == zip(*b). – asmeurer Dec 28 '10 at 5:27
3  
map(None, *a) can come in handy if your tuples are of differing lengths: map(None, *[(1,2), (3,4,5), (5,)]) => [(1, 3, 5), (2, 4, None), (None, 5, None)] – yangyang Jan 23 '11 at 21:37
show 2 more comments
feedback

enumerate with different starting index

enumerate has partly been covered in this answer, but recently I've found an even more hidden feature of enumerate that I think deserves its own post instead of just a comment.

Since Python 2.6, you can specify a starting index to enumerate in its second argument:

>>> l = ["spam", "ham", "eggs"]
>>> list(enumerate(l))
>>> [(0, "spam"), (1, "ham"), (2, "eggs")]
>>> list(enumerate(l, 1))
>>> [(1, "spam"), (2, "ham"), (3, "eggs")]

One place where I've found it utterly useful is when I am enumerating over entries of a symmetric matrix. Since the matrix is symmetric, I can save time by iterating over the upper triangle only, but in that case, I have to use enumerate with a different starting index in the inner for loop to keep track of the row and column indices properly:

for ri, row in enumerate(matrix):
    for ci, column in enumerate(matrix[ri:], ri):
        # ci now refers to the proper column index

Strangely enough, this behaviour of enumerate is not documented in help(enumerate), only in the online documentation.

link|improve this answer
show 4 more comments
feedback

You can use property to make your class interfaces more strict.

class C(object):
    def __init__(self, foo, bar):
        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

    def _del_foo(self):
        del self._foo

    # any of fget, fset, fdel and doc are optional,
    # so you can make a write-only and/or delete-only property.
    foo = property(fget = _get_foo, fset = _set_foo,
                   fdel = _del_foo, doc = 'Hello, I am foo!')

class D(C):
    def _get_foo(self):
        return self._foo * 2

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

    foo = property(fget = _get_foo, fset = _set_foo,
                   fdel = C.foo.fdel, doc = C.foo.__doc__)

In Python 2.6 and 3.0:

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

    @property
    def foo(self):
        '''Hello, I am foo!'''

        return self._foo

    @foo.setter
    def foo(self, value):
        self._foo = value

    @foo.deleter
    def foo(self):
        del self._foo

class D(C):
    @C.foo.getter
    def foo(self):
        return self._foo * 2

    @foo.setter
    def foo(self, value):
        self._foo = value / 2

To learn more about how property works refer to descriptors.

link|improve this answer
6  
It would be nice if your pre-2.6 and your 2.6 and 3.0 examples would actually present the exact same thing: classname is different, there are comments in the pre-2.6 version, the 2.6 and 3.0 versions don't contain initialization code. – Confusion Jan 10 '10 at 12:04
feedback

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|improve this answer
4  
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
2  
You can also directly use help: help('foo') – yuriks Dec 26 '08 at 18:44
7  
If you use IPython, you can append a question mark to get help on a variable/method. – akaihola Jan 10 '09 at 3:50
show 3 more comments
feedback

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|improve this answer
16  
Sadly this will stop working in Python 3 – Marius Gedminas Jun 18 '09 at 18:51
3  
Awe, the base64 one was pretty useful in interactive sessions handling data from the web. – Longpoke May 13 '10 at 20:39
show 2 more comments
feedback

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 set().issubset():

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

As of Python 2.7 and 3.0 you can use curly braces to create a set:

myset = {1,2,3,4}

as well as set comprehensions:

{x for x in stuff}

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

link|improve this answer
2  
Also useful in cases where a dictionary were used only to test if a value is there. – Jacek Konieczny Mar 20 '10 at 10:20
1  
I use set about as much as tuple and list. – Longpoke May 13 '10 at 20:42
show 2 more comments
feedback

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"
>>> import sys
>>> 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|improve this answer
feedback
>>> 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)

See the documentation.

link|improve this answer
4  
I wish curryfication add a decent operator in python though. – poulejapon Mar 17 '09 at 1:13
feedback

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|improve this answer
10  
pprint is also good for printing dictionaries in doctests, since it always sorts the output by keys – akaihola Jan 10 '09 at 4:06
feedback

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|improve this answer
61  
Maybe it is best that this feature remains hidden. – James McMahon Oct 16 '08 at 12:32
8  
Well, the actual hidden feature here is mechanism used to implement GOTO. – Constantin Oct 16 '08 at 15:21
2  
Surely, for breaking out of a nested loop you can just raise an exception, no? – shylent Nov 14 '09 at 14:02
7  
@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 '09 at 18:57
5  
@shylent, the correct way to break out of a nested loop is to put the loop into a function, and return from the function – Christian Oudard Dec 16 '09 at 17:41
show 3 more comments
feedback

dict's constructor accepts keyword arguments:

>>> dict(foo=1, bar=2)
{'foo': 1, 'bar': 2}
link|improve this answer
8  
So long as the keyword arguments are valid Python identifiers (names). You can't use: dict(1="one", two=2 ...) because the "1" is not a valid identifier even though it's a perfectly valid dictionary key. – Jim Dennis Jun 25 '10 at 22:45
show 1 more comment
feedback

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|improve this answer
6  
Not so cool, you are just having a list comprehension with two for loops. What is so surprising about that? – Olivier Feb 13 '10 at 21:10
1  
@Torsten: well, the list comprehension comprises already a for .. if, so what is so interesting? You can write: [x for i in range(10) if i%2 for j in range(10) if j%2], nothing especially cool or interesting. The if in the middle of your example has nothing to do with the second for. – Olivier Feb 16 '10 at 17:34
3  
I was wondering, is there a way to do this with an else? [ a for (a, b) in zip(lista, listb) if a == b else: '-' ] – Austin Jul 14 '10 at 21:59
show 3 more comments
feedback

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|improve this answer
show 3 more comments
feedback

Sequence multiplication and reflected operands

>>> 'xyz' * 3
'xyzxyzxyz'

>>> [1, 2] * 3
[1, 2, 1, 2, 1, 2]

>>> (1, 2) * 3
(1, 2, 1, 2, 1, 2)

We get the same result with reflected (swapped) operands

>>> 3 * 'xyz'
'xyzxyzxyz'

It works like this:

>>> s = 'xyz'
>>> num = 3

To evaluate an expression s * num interpreter calls s.__mul__(num)

>>> s * num
'xyzxyzxyz'

>>> s.__mul__(num)
'xyzxyzxyz'

To evaluate an expression num * s interpreter calls num.__mul__(s)

>>> num * s
'xyzxyzxyz'

>>> num.__mul__(s)
NotImplemented

If the call returns NotImplemented then interpreter calls a reflected operation s.__rmul__(num) if operands have different types

>>> s.__rmul__(num)
'xyzxyzxyz'

See http://docs.python.org/reference/datamodel.html#object.rmul

link|improve this answer
3  
+1 I knew about sequence multiplication, but the reflected operands are new to me. – Björn Pollex Sep 12 '10 at 7:53
show 2 more comments
feedback

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|improve this answer
6  
For what it's worth, tuple unpacking in function definitions is going aaway in python 3.0 – Ryan Sep 29 '08 at 1:18
2  
why is it going away? – interstar Nov 23 '08 at 11:47
3  
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
1  
@yangyang: that was added. The only thing that was removed is the tuple unpacking in function definitions. Instead, you just move such unpacking to the first line of the function implementation. – ncoghlan Feb 1 '11 at 7:07
show 3 more comments
feedback

The Python Interpreter

>>>

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

link|improve this answer
5  
The #1 reason Python is better than everything else. </fanboi> – sli Dec 30 '08 at 9:48
16  
Everything else you've seen. </smuglispweenie> – Matt Curtis Jun 29 '09 at 13:23
8  
And it also has iPython which is much better than the default interpreter – juanjux Aug 11 '09 at 9:51
1  
I wish I could use iPython like SLIME in all of its glory – nicholas Dec 21 '09 at 4:22
feedback

Obviously, the antigravity module. xkcd #353

link|improve this answer
4  
Probably my most used module. After the soul module, of course. – sli Dec 30 '08 at 9:43
21  
Which actually works. Try putting "import antigravity" in the newest Py3K. – Andrew Szeto Jun 5 '09 at 9:11
show 2 more comments
feedback

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|improve this answer
3  
Nifty trick. Do you know if this is accepted behavior or is it more of a dirty hack that may change in the future? The underscore makes me think the latter. – Kiv Jan 1 '09 at 15:47
18  
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 '09 at 4:04
32  
This is an undocumented implementation detail, not a hidden feature. It would be a bad idea to rely on this. – Marius Gedminas Jun 18 '09 at 18:48
1  
If you want to reference the list as you're building it, use an ordinary loop. This is very implementation dependent - CPython uses a hidden name in the locals dict because it is convenient, but other implementations are under no obligation to do the same thing. – ncoghlan Feb 1 '11 at 7:02
show 3 more comments
feedback

Python sort function sorts tuples correctly (i.e. using the familiar lexicographical order):

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|improve this answer
5  
This is a consequence of tuple comparison working correctly in general, i.e. (1, 2) < (1, 3). – Constantin Oct 5 '08 at 9:43
9  
This is useful for version tuples: (1, 9) < (1, 10). – Roger Pate Jun 27 '09 at 23:00
feedback

The unpacking syntax has been upgraded in the recent version as can be seen in the example.

>>> a, *b = range(5)
>>> a, b
(0, [1, 2, 3, 4])
>>> *a, b = range(5)
>>> a, b
([0, 1, 2, 3], 4)
>>> a, *b, c = range(5)
>>> a, b, c
(0, [1, 2, 3], 4)
link|improve this answer
4  
never seen this before, it's pretty nice! – MatToufoutu Jul 25 '10 at 18:01
show 3 more comments
feedback
1 2 3 4 5 7

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