up vote 1358 down vote favorite
1981
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 3 4 5 6 7

mapreduce using map and reduce functions

create a simple sumproduct this way:

def sumprod(x,y):
    return reduce(lambda a,b:a+b, map(lambda a, b: a*b,x,y))

example:

In [2]: sumprod([1,2,3],[4,5,6])
Out[2]: 32
link|improve this answer
feedback

Here is a helpful function I use when debugging type errors

def typePrint(object):
    print(str(object) + " - (" + str(type(object)) + ")")

It simply prints the input followed by the type, for example

>>> a = 101
>>> typePrint(a)
    101 - (<type 'int'>)
link|improve this answer
feedback

Interactive Debugging of Scripts (and doctest strings)

I don't think this is as widely known as it could be, but add this line to any python script:

import pdb; pdb.set_trace()

will cause the PDB debugger to pop up with the run cursor at that point in the code. What's even less known, I think, is that you can use that same line in a doctest:

"""
>>> 1 in (1,2,3)   
Becomes
>>> import pdb; pdb.set_trace(); 1 in (1,2,3)
"""

You can then use the debugger to checkout the doctest environment. You can't really step through a doctest because the lines are each run autonomously, but it's a great tool for debugging the doctest globs and environment.

link|improve this answer
show 1 more comment
feedback

In Python 2 you can generate a string representation of an expression by enclosing it with backticks:

 >>> `sorted`
'<built-in function sorted>'

This is gone in python 3.X.

link|improve this answer
feedback

some cool features with reduce and operator.

>>> from operator import add,mul
>>> reduce(add,[1,2,3,4])
10
>>> reduce(mul,[1,2,3,4])
24
>>> reduce(add,[[1,2,3,4],[1,2,3,4]])
[1, 2, 3, 4, 1, 2, 3, 4]
>>> reduce(add,(1,2,3,4))
10
>>> reduce(mul,(1,2,3,4))
24
link|improve this answer
feedback

Not really a hidden feature but something that might come in handy.

for looping through items in a list pairwise

for x, y in zip(s, s[1:):
link|improve this answer
feedback
is_ok() and "Yes" or "No"
link|improve this answer
30  
The preferred way to accomplish this in Python 2.5 or up is " 'Yes' if is_ok() else 'No' ". – Paul Fisher Nov 27 '08 at 3:43
7  
"Preferred" In this case means that the conditional operator works as expected for all possible operands. Specifically, True and False or True is True, but False if True else True is false, which is almost certainly what you expected. This is especially important where the operands have side effects, and the conditional operator will NEVER evaluate more than one of its conditional clauses. – TokenMacGuy Dec 30 '09 at 23:54
show 5 more comments
feedback
for line in open('foo'):
    print(line)

which is equivalent (but better) to:

f = open('foo', 'r')
for line in f.readlines():
   print(line)
f.close()
link|improve this answer
2  
That's not equivalent at all, because you can't predict when the file will be closed. That depends on the interpreter. As far as I know CPython garbage collects objects as soon as possible, but other interpreters might not. – Cristian Ciupitu Oct 7 '11 at 1:50
feedback

to activate the autocompletion in IDE that accepts it (like IDLE, Editra, IEP) instead of making: "hi". (and then you hit TAB), you can cheat in the IDE, just make hi". (and you heat TAB) (as you can see, there is no single quote in the beginning) because it will only follows the latest punctuation, it's like when you add : and hit enter, it adds directly an indentation, dont know if it will make change, but it's a tip no more :)

link|improve this answer
show 3 more comments
feedback

Braces

def g():
    print 'hi!'

def f(): (
    g()
)

>>> f()
hi!
link|improve this answer
1  
>>> def f(): ( ... g() ... g() File "<stdin>", line 3 g() ^ SyntaxError: invalid syntax – bukzor Jun 24 '10 at 1:24
2  
I was trying to show that your feature doesn't work if you have more than one statement inside the "braces". – bukzor Jun 27 '10 at 16:46
34  
Everyone knows that Python uses #{ and #} for braces. Subject to certain lexical constraints. – detly Jul 14 '10 at 8:21
show 1 more comment
feedback
1 3 4 5 6 7

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