Hidden features of Python - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T18:52:10Zhttp://stackoverflow.com/feeds/question/101268http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/101268/hidden-features-of-python239Hidden features of Pythonjelovirt2008-09-19T11:50:36Z2009-11-06T14:47:37Z
<p>What are the lesser-known but useful features of the Python programming language.</p>
<ul>
<li>Try to limit answers to Python core</li>
<li>One feature per answer</li>
<li>Give an example and short description of the feature, not just a link to documentation</li>
<li>Label the feature using bold title as the first line</li>
</ul>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101276#10127630Answer by cleg for Hidden features of Pythoncleg2008-09-19T11:53:19Z2009-10-20T07:08:14Z<p><strong>Main messages :)</strong></p>
<pre><code>import this
# btw look at this module's source :)
</code></pre>
<p><hr /></p>
<p><a href="http://svn.python.org/view/python/trunk/Lib/this.py?view=markup" rel="nofollow">De-cyphered</a>:</p>
<blockquote>
<p>The Zen of Python, by Tim Peters </p>
<p>Beautiful is better than ugly.<br />
Explicit is better than implicit.<br />
Simple is better than complex.<br />
Complex is better than complicated.<br />
Flat is better than nested.<br />
Sparse is better than dense.<br />
Readability counts.<br />
Special cases aren't special enough to break the rules.<br />
Although practicality beats purity.<br />
Errors should never pass silently.<br />
Unless explicitly silenced.<br />
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.<br />
Although that way may not be obvious at first unless you're Dutch.<br />
Now is better than never.<br />
Although never is often better than <em>right</em> now.<br />
If the implementation is hard to explain, it's a bad idea.<br />
If the implementation is easy to explain, it may be a good idea.<br />
Namespaces are one honking great idea -- let's do more of those! </p>
</blockquote>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101280#1012802Answer by Oko for Hidden features of PythonOko2008-09-19T11:53:55Z2008-09-19T11:53:55Z<p><strong>List comprehensions</strong></p>
<p><a href="http://www.secnetix.de/olli/Python/list_comprehensions.hawk" rel="nofollow">list comprehensions</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101286#1012867Answer by Matthias Kestenholz for Hidden features of PythonMatthias Kestenholz2008-09-19T11:55:12Z2008-09-19T11:55:12Z<p><strong>Metaclasses</strong></p>
<p>of course :-) <a href="http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python">http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101288#1012880Answer by cleg for Hidden features of Pythoncleg2008-09-19T11:55:26Z2008-09-19T11:55:26Z<p><strong>Special methods</strong></p>
<p><a href="http://docs.python.org/ref/specialnames.html" rel="nofollow">Absolute power!</a> </p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101310#101310108Answer by freespace for Hidden features of Pythonfreespace2008-09-19T11:59:28Z2008-09-22T18:23:59Z<p><strong>Creating generators objects</strong></p>
<p>If you write </p>
<pre><code>x=(n for n in foo if bar(n))
</code></pre>
<p>you can get out the generator and assign it to x. Now it means you can do</p>
<pre><code>for n in x:
</code></pre>
<p>The advantage of this is that you don't need intermediate storage, which you would need if you did</p>
<pre><code>x = [n for n in foo if bar(n)]
</code></pre>
<p>In some cases this can lead to significant speed up.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101447#10144787Answer by DzinX for Hidden features of PythonDzinX2008-09-19T12:32:26Z2008-09-19T12:32:26Z<p><strong>Decorators</strong></p>
<p><a href="http://docs.python.org/ref/function.html#tok-decorators" rel="nofollow">Decorators</a> 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 (@).</p>
<p>Example shows a <code>print_args</code> decorator that prints function's arguments before calling it:</p>
<pre><code>>>> 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
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101537#10153777Answer by dungema for Hidden features of Pythondungema2008-09-19T12:44:42Z2009-06-27T22:26:56Z<p><strong>Readable regular expressions</strong></p>
<p>In Python you can split a regular expression over multiple lines, name your matches and insert comments.</p>
<p>Example verbose syntax (from <a href="http://diveintopython.org/regular%5Fexpressions/index.html" rel="nofollow">Dive into Python</a>):</p>
<pre><code>>>> 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)
</code></pre>
<p>Example naming matches (from <a href="http://www.amk.ca/python/howto/regex/" rel="nofollow">Regular Expression HOWTO</a>)</p>
<pre><code>>>> p = re.compile(r'(?P<word>\b\w+\b)')
>>> m = p.search( '(((( Lots of punctuation )))' )
>>> m.group('word')
'Lots'
</code></pre>
<p>You can also verbosely write a regex without using <code>re.VERBOSE</code> thanks to string literal concatenation.</p>
<pre><code>>>> 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})$"
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101549#10154925Answer by Rafał Dowgird for Hidden features of PythonRafał Dowgird2008-09-19T12:45:44Z2008-09-19T12:45:44Z<p>Nested list comprehensions and generator expressions:</p>
<pre><code>[(i,j) for i in range(3) for j in range(i) ]
((i,j) for i in range(4) for j in range(i) )
</code></pre>
<p>These can replace huge chunks of nested-loop code.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101731#10173116Answer by Ber for Hidden features of PythonBer2008-09-19T13:16:49Z2009-06-27T22:46:18Z<p><strong>Getter functions in module operator</strong></p>
<p>The functions <code>attrgetter()</code> and <code>itemgetter()</code> in module <code>operator</code> can be used to generate fast access functions for use in sorting and search objects and dictionaries</p>
<p><a href="http://docs.python.org/lib/module-operator.html" rel="nofollow">Chapter 6.7</a> in the Python Library Docs</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101739#10173982Answer by Rafał Dowgird for Hidden features of PythonRafał Dowgird2008-09-19T13:18:19Z2008-11-23T10:38:54Z<p><a href="http://www.python.org/dev/peps/pep-0342/" rel="nofollow">Sending values into generator functions</a>. For example having this function:</p>
<pre><code>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
</code></pre>
<p>You can:</p>
<pre><code>>>> 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
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101744#1017444Answer by phjr for Hidden features of Pythonphjr2008-09-19T13:19:13Z2008-09-19T13:19:13Z<p>Ability to substitute even thinks like file deletion, file opening etc. - direct manipulation of language library. This is a huge advantage when <strong>testing.</strong> You don't have to wrap everything in complicated containers. Just substitute a function/method and go. This is also called <strong>monkey-patching.</strong></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101778#1017781Answer by Kevin Little for Hidden features of PythonKevin Little2008-09-19T13:25:43Z2008-09-19T13:25:43Z<pre><code>>>> x=[1,1,2,'a','a',3]
>>> y = [ _x for _x in x if not _x in locals()['_[1]'] ]
>>> y
[1, 2, 'a', 3]
</code></pre>
<p><br>
"locals()['_[1]']" is the "secret name" of the list being created. Very useful when state of list being built affects subsequent build decisions.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101840#10184083Answer by Rafał Dowgird for Hidden features of PythonRafał Dowgird2008-09-19T13:33:42Z2008-09-19T13:33:42Z<p>The step argument in slice operators. For example:</p>
<pre><code>a = [1,2,3,4,5]
>>> a[::2] # iterate over the whole list in 2-increments
[1,3,5]
</code></pre>
<p>The special case <code>x[::-1]</code> is a useful idiom for 'x reversed'.</p>
<pre><code>>>> a[::-1]
[5,4,3,2,1]
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101892#1018928Answer by e-satis for Hidden features of Pythone-satis2008-09-19T13:39:43Z2008-10-10T00:12:25Z<p>Implicit concatenation:</p>
<pre><code>>>> print "Hello " "World"
Hello World
</code></pre>
<p>Useful when you want to make a long text fit on several lines in a script:</p>
<pre><code>hello = "Greaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa Hello " \
"Word"
</code></pre>
<p>or</p>
<pre><code>hello = ("Greaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa Hello "
"Word")
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101919#10191922Answer by J.F. Sebastian for Hidden features of PythonJ.F. Sebastian2008-09-19T13:43:46Z2009-07-21T19:38:43Z<p><a href="http://docs.python.org/library/functions.html#property" rel="nofollow">property</a></p>
<pre><code>class ClassName(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
foo = property(_get_foo, _set_foo)
</code></pre>
<p>In Python <a href="http://docs.python.org/dev/whatsnew/2.6.html" rel="nofollow">2.6 and 3.0</a>:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101945#101945168Answer by Thomas Wouters for Hidden features of PythonThomas Wouters2008-09-19T13:47:15Z2009-10-21T18:44:04Z<p><strong>Chaining comparison operators</strong>:</p>
<pre><code>>>> x = 5
>>> 1 < x < 10
True
>>> 10 < x < 20
False
>>> x < 10 < x*10 < 100
True
>>> 10 > x <= 9
True
>>> 5 == x > 4
True
</code></pre>
<p>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 <code>1 < x and x < 10</code>, and <code>x < 10 and 10 < x * 10 and x*10 < 100</code>, but with less typing and each term is only evaluated once.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101971#1019712Answer by Thomas Wouters for Hidden features of PythonThomas Wouters2008-09-19T13:51:54Z2008-09-19T13:51:54Z<p><strong>Everything is dynamic</strong></p>
<p>"There is no compile-time". Everything in Python is runtime. A module is 'defined' by executing the module's source top-to-bottom, just like a script, and the resulting namespace is the module's attribute-space. Likewise, a class is 'defined' by executing the class body top-to-bottom, and the resulting namespace is the class's attribute-space. A class body can contain completely arbitrary code -- including import statements, loops and other class statements. Creating a class, function or even module 'dynamically', as is sometimes asked for, isn't hard; in fact, it's impossible to avoid, since everything is 'dynamic'.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/102006#10200631Answer by Thomas Wouters for Hidden features of PythonThomas Wouters2008-09-19T13:56:27Z2008-09-19T13:56:27Z<p><strong>Re-raising exceptions</strong>:</p>
<pre><code>try:
some_operation()
except SomeError, e:
if is_fatal(e):
raise
handle_nonfatal(e)
</code></pre>
<p>The 'raise' statement with no arguments inside an error handler tells Python to re-raise the exception <em>with the original traceback intact</em>, allowing you to say "oh, sorry, sorry, I didn't mean to catch that, sorry, sorry."</p>
<p>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.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/102037#10203754Answer by Lucas S. for Hidden features of PythonLucas S.2008-09-19T14:00:11Z2008-10-10T00:07:26Z<p><strong>One line Variable value swapping</strong></p>
<pre><code>>>> a = 10
>>> b = 5
>>> a, b = b, a
>>> print a
5
>>> print b
10
</code></pre>
<p><strong>a</strong> will have the value of <strong>b</strong> and so on.</p>
<p>This is a side effect of python packing and unpacking feature.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/102062#10206242Answer by Nick Johnson for Hidden features of PythonNick Johnson2008-09-19T14:04:38Z2009-10-18T08:48:22Z<p><strong>Descriptors</strong></p>
<p>They're the magic behind a whole bunch of core Python features. </p>
<p>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 <code>__get__</code>, <code>__set__</code>, or <code>__del__</code> methods.</p>
<p>Here's how you'd implement your own (read-only) version of property using descriptors:</p>
<pre><code>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)
</code></pre>
<p>and you'd use it just like the built-in property():</p>
<pre><code>class MyClass(object):
@Property
def foo(self):
return "Foo!"
</code></pre>
<p>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.</p>
<p>Raymond Hettinger has <a href="http://users.rcn.com/python/download/Descriptor.htm" rel="nofollow">an excellent tutorial</a> that does a much better job of describing them than I do.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/102065#10206558Answer by Pierre-Jean Coudert for Hidden features of PythonPierre-Jean Coudert2008-09-19T14:04:50Z2008-09-19T14:10:16Z<p><a href="http://docs.python.org/lib/module-doctest.html" rel="nofollow">Doctest</a>: documentation and unit-testing at the same time. </p>
<p>Example extracted fom python documentation:</p>
<pre><code>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()
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/102202#102202116Answer by mbac32768 for Hidden features of Pythonmbac327682008-09-19T14:20:38Z2009-03-17T00:59:57Z<p><strong>iter() can take a callable argument</strong></p>
<p>For instance:</p>
<pre><code>def seek_next_line(f):
for c in iter(lambda: f.read(1),'\n'):
pass
</code></pre>
<p>The <code>iter(callable, until_value)</code> calls repetitively the callable and yields its result until the callable returns <code>until_value</code>. </p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/103198#1031980Answer by pi for Hidden features of Pythonpi2008-09-19T15:55:40Z2009-01-26T14:56:08Z<p>Too lazy to initialize every field in a dictionary? No problem:</p>
<p>In Python > 2.3:</p>
<pre><code>from collections import defaultdict
</code></pre>
<p>In Python <= 2.3:</p>
<pre><code>def defaultdict(type_):
class Dict(dict):
def __getitem__(self, key):
return self.setdefault(key, type_())
return Dict()
</code></pre>
<p>In any version:</p>
<pre><code>d = defaultdict(list)
for stuff in lots_of_stuff:
d[stuff.name].append(stuff)
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/105325#1053258Answer by davidavr for Hidden features of Pythondavidavr2008-09-19T20:30:28Z2008-09-19T20:30:28Z<p><strong>The Python Interpreter</strong></p>
<pre><code>>>>
</code></pre>
<p>Maybe not lesser known, but certainly one of my favorite features of Python.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/106868#1068685Answer by Jeremy Michael Cantrell for Hidden features of PythonJeremy Michael Cantrell2008-09-20T02:55:10Z2009-06-27T23:12:42Z<p><strong>First-class functions</strong></p>
<p>It's not really a hidden feature, but the fact that functions are first class objects is simply great. You can pass them around like any other variable.</p>
<pre><code>>>> def jim(phrase):
... return 'Jim says, "%s".' % phrase
>>> def say_something(person, phrase):
... print person(phrase)
>>> say_something(jim, 'hey guys')
'Jim says, "hey guys".'
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/108297#10829733Answer by Torsten Marek for Hidden features of PythonTorsten Marek2008-09-20T14:25:58Z2008-09-23T17:39:56Z<p><strong>Creating new types at runtime</strong></p>
<pre><code>>>> NewType = type("NewType", (object,), {"x": "hello"})
>>> n = NewType()
>>> n.x
"hello"
</code></pre>
<p>which is exactly the same as</p>
<pre><code>>>> class NewType(object):
>>> x = "hello"
>>> n = NewType()
>>> n.x
"hello"
</code></pre>
<p>Probably not the most useful thing, but nice to know.</p>
<p><strong>Edit</strong>: Fixed name of new type, should be <code>NewType</code> to be the exact same thing as with <code>class</code> statement.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/108312#10831213Answer by Torsten Marek for Hidden features of PythonTorsten Marek2008-09-20T14:31:17Z2008-09-20T14:31:17Z<p><strong>Interleaving <code>if</code> and <code>for</code> in list comprehensions</strong></p>
<pre><code>>>> [(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)]
</code></pre>
<p>I never realized this until I learned Haskell.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/109182#10918257Answer by Ycros for Hidden features of PythonYcros2008-09-20T20:06:16Z2009-10-21T18:31:34Z<p><strong>Futures and the "<code>with</code>" Statement</strong></p>
<p>There's a special module in Python called <a href="http://docs.python.org/lib/module-future.html" rel="nofollow"><code>__future__</code></a>. 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 <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow"><code>with</code> statement</a>, which is currently present in <a href="http://docs.python.org/lib/module-future.html" rel="nofollow"><code>__future__</code></a> in version 2.5, but are part of the language in the 2.6 and 3.0 versions.</p>
<p>The reason it is in <a href="http://docs.python.org/lib/module-future.html" rel="nofollow"><code>__future__</code></a> is because it makes both <code>with</code> and <code>as</code> keywords, which could break existing code.</p>
<p>I have used the <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow">"with" statement</a> in 2.5 a lot because I think it's a very useful construct, here is a quick demo:</p>
<pre><code>from __future__ import with_statement
with open('foo.txt', 'w') as f:
f.write('hello!')
</code></pre>
<p>What's happening here behind the scenes, is that the <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow">"with" statement</a> calls the special <code>__enter__</code> and <code>__exit__</code> methods on the file object. Exception details are also passed to <code>__exit__</code> if any exception was raised from the with statement body, allowing for exception handling to happen there.</p>
<p>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 <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow"><code>with</code> statement</a>'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.</p>
<p>Other common use cases for this include locking with threads and database transactions. </p>
<p>For more information on how to use this and how to implement your own <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow"><code>with</code> statement</a> compatible objects read <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow">PEP 343</a>.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/109194#1091943Answer by daniel for Hidden features of Pythondaniel2008-09-20T20:09:34Z2008-09-20T20:09:34Z<p>Some of the <strong>builtin</strong> favorites, map(), reduce(), and filter(). All extremely fast and powerful.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/111176#11117626Answer by e-satis for Hidden features of Pythone-satis2008-09-21T15:00:37Z2009-06-27T22:42:08Z<p>The simple fact that you can unpack a list or a dictionary as function arguments using <code>*</code> and <code>**</code>.</p>
<p>For example :</p>
<pre><code>def drawPoint(x,y):
# do some magic
point1 = (3, 4)
point2 = {'y':3, 'x':2}
drawPoint(*point1)
drawPoint(**point2)
</code></pre>
<p>Very useful shortcut since list, tuple and dicts are overused containers (for the best).</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/111970#11197038Answer by Rory for Hidden features of PythonRory2008-09-21T20:18:19Z2008-09-21T20:18:19Z<p>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).</p>
<p>It's great for things like adding up numbers:</p>
<p><code>sum[value] = sum.get(value, 0) + 1</code></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112274#1122741Answer by Armin Ronacher for Hidden features of PythonArmin Ronacher2008-09-21T21:49:26Z2008-09-21T21:49:26Z<p>If you use <code>exec</code> 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:</p>
<pre><code>>>> 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
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112286#11228683Answer by Armin Ronacher for Hidden features of PythonArmin Ronacher2008-09-21T21:54:12Z2008-09-21T21:54:12Z<p>From 2.5 onwards dicts have a special method <code>__missing__</code> that is invoked for missing items:</p>
<pre><code>>>> 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]}
</code></pre>
<p>There is also a dict subclass in <code>collections</code> called <code>defaultdict</code> that does pretty much the same but calls a function without arguments for not existing items:</p>
<pre><code>>>> from collections import defaultdict
>>> m = defaultdict(list)
>>> m["foo"].append(1)
>>> m["foo"].append(2)
>>> dict(m)
{'foo': [1, 2]}
</code></pre>
<p>I recommend converting such dicts to regular dicts before passing them to functions that don't expect such subclasses. A lot of code uses <code>d[a_key]</code> and catches KeyErrors to check if an item exists which would add a new item to the dict.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112296#1122961Answer by Armin Ronacher for Hidden features of PythonArmin Ronacher2008-09-21T21:57:37Z2008-09-21T21:57:37Z<p>If you are using descriptors on your classes Python completely bypasses <code>__dict__</code> for that key which makes it a nice place to store such values:</p>
<pre><code>>>> 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'}
</code></pre>
<p>This helps to keep <code>dir()</code> clean.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112303#11230348Answer by eduffy for Hidden features of Pythoneduffy2008-09-21T22:01:53Z2008-09-21T22:01:53Z<p>If you don't like using whitespace to denote scopes, you can use the C-style {} by issuing:</p>
<pre><code>from __future__ import braces
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112306#1123067Answer by Armin Ronacher for Hidden features of PythonArmin Ronacher2008-09-21T22:02:39Z2008-09-21T22:02:39Z<p><code>__slots__</code> 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:</p>
<pre><code>class Point(object):
__slots__ = ('x', 'y')
</code></pre>
<p>Now that object obviously has two attributes. Now we can create an instance of it and build a dict of it this way:</p>
<pre><code>>>> p = Point()
>>> p.x = 3
>>> p.y = 5
>>> dict((k, getattr(p, k)) for k in p.__slots__)
{'y': 5, 'x': 3}
</code></pre>
<p>This however won't work if point was subclassed and new slots were added. However Python automatically implements <code>__reduce_ex__</code> to help the <code>copy</code> module. This can be abused to get a dict of values:</p>
<pre><code>>>> p.__reduce_ex__(2)[2][1]
{'y': 5, 'x': 3}
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112316#11231620Answer by Armin Ronacher for Hidden features of PythonArmin Ronacher2008-09-21T22:07:44Z2008-09-21T22:07:44Z<p>Python's advanced slicing operation has a barely known syntax element, the ellipsis:</p>
<pre><code>>>> class C(object):
... def __getitem__(self, item):
... return item
...
>>> C()[1:2, ..., 3]
(slice(1, 2, None), Ellipsis, 3)
</code></pre>
<p>Unfortunately it's barely useful as the ellipsis is only supported if tuples are involved.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/112325#1123254Answer by Armin Ronacher for Hidden features of PythonArmin Ronacher2008-09-21T22:12:38Z2008-09-21T22:12:38Z<p>Builtin methods or functions don't implement the descriptor protocol which makes it impossible to do stuff like this:</p>
<pre><code>>>> 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)
</code></pre>
<p>However you can create a small bind descriptor that makes this possible:</p>
<pre><code>>>> 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
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/113164#11316435Answer by Pasi Savolainen for Hidden features of PythonPasi Savolainen2008-09-22T04:23:22Z2008-09-22T04:23:22Z<p>Named formatting, % -formatting takes a hash (also applies %i/%s etc. validation).</p>
<pre><code>>>> 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.
</code></pre>
<p>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..</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/113198#11319830Answer by Jason Baker for Hidden features of PythonJason Baker2008-09-22T04:34:39Z2008-09-22T04:34:39Z<p><strong>Be careful with mutable default arguments</strong></p>
<pre><code>>>> def foo(x=[]):
... x.append(1)
... print x
...
>>> foo()
[1]
>>> foo()
[1, 1]
>>> foo()
[1, 1, 1]
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/113319#11331916Answer by ianb for Hidden features of Pythonianb2008-09-22T05:33:15Z2008-10-10T00:10:18Z<p>Tuple unpacking:</p>
<pre><code>>>> (a, (b, c), d) = [(1, 2), (3, 4), (5, 6)]
>>> a
(1, 2)
>>> b
3
>>> c, d
(4, (5, 6))
</code></pre>
<p>More obscurely, you can do this in function arguments (in Python 2.x; Python 3.x will not allow this anymore):</p>
<pre><code>>>> def addpoints((x1, y1), (x2, y2)):
... return (x1+x2, y1+y2)
>>> addpoints((5, 0), (3, 5))
(8, 5)
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/113472#1134721Answer by paddy3118 for Hidden features of Pythonpaddy31182008-09-22T06:32:00Z2008-09-22T06:32:00Z<p><a href="http://paddy3118.blogspot.com/2007/02/unzip-un-needed-in-python.html" rel="nofollow">unzip un-needed in Python</a></p>
<p>Someone blogged about Python not having an unzip function to go with zip(). unzip is straight-forward to calculate because:</p>
<pre><code>>>> t1 = (0,1,2,3)
>>> t2 = (7,6,5,4)
>>> [t1,t2] == zip(*zip(t1,t2))
True
</code></pre>
<p>On reflection though, I'd rather have an explicit unzip().</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/113833#11383327Answer by dgrant for Hidden features of Pythondgrant2008-09-22T08:43:11Z2008-09-22T08:43:11Z<p>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:</p>
<blockquote>
<p>"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.)"</p>
</blockquote>
http://stackoverflow.com/questions/101268/hidden-features-of-python/114157#11415721Answer by Constantin for Hidden features of PythonConstantin2008-09-22T10:31:50Z2008-09-22T10:31:50Z<p>Exception <strong>else</strong> clause:</p>
<pre><code>try:
put_4000000000_volts_through_it(parrot)
except Voom:
print "'E's pining!"
else:
print "This parrot is no more!"
finally:
end_sketch()
</code></pre>
<p>See <a href="http://docs.python.org/tut/node10.html" rel="nofollow">http://docs.python.org/tut/node10.html</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/114420#11442050Answer by rlerallut for Hidden features of Pythonrlerallut2008-09-22T11:55:40Z2008-11-23T10:23:07Z<p>The for...else idiom (see <a href="http://docs.python.org/ref/for.html" rel="nofollow">http://docs.python.org/ref/for.html</a> )</p>
<pre><code>for i in foo:
if i == 0:
break
else:
print("i was never 0")
</code></pre>
<p>The "else" block will be normally executed at the end of the for loop, unless the break is called.</p>
<p>The above code could be emulated as follows:</p>
<pre><code>found = False
for i in foo:
if i == 0:
found = True
break
if not found:
print("i was never 0")
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/116280#11628015Answer by lacker for Hidden features of Pythonlacker2008-09-22T17:32:50Z2008-09-22T17:32:50Z<p>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:</p>
<pre><code>>>> dir("foo")
['__add__', '__class__', '__contains__', (snipped a bunch), 'title',
'translate', 'upper', 'zfill']
</code></pre>
<p>And then if you want more information about a particular method you can call "help" on it.</p>
<pre><code>>>> help("foo".upper)
Help on built-in function upper:
upper(...)
S.upper() -> string
Return a copy of the string S converted to uppercase.
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/116391#1163911Answer by amix for Hidden features of Pythonamix2008-09-22T17:54:25Z2008-09-22T17:54:25Z<pre><code>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
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/116440#1164409Answer by amix for Hidden features of Pythonamix2008-09-22T18:03:00Z2008-09-22T18:03:00Z<p>Python sort function sorts tuples correctly:</p>
<pre><code>a = [(2, "b"), (1, "a"), (2, "a"), (3, "c")]
print sorted(a)
#[(1, 'a'), (2, 'a'), (2, 'b'), (3, 'c')]
</code></pre>
<p>Useful if you want to sort a list of persons after age and then name.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/116480#11648026Answer by tghw for Hidden features of Pythontghw2008-09-22T18:08:54Z2008-09-22T18:08:54Z<p><strong>Conditional Assignment</strong></p>
<pre><code>x = 3 if (y == 1) else 2
</code></pre>
<p>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:</p>
<pre><code>x = 3 if (y == 1) else 2 if (y == -1) else 1
</code></pre>
<p>Though at a certain point, it goes a little too far.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/116580#11658011Answer by Tzury Bar Yochay for Hidden features of PythonTzury Bar Yochay2008-09-22T18:22:29Z2008-09-22T18:22:29Z<ul>
<li>The underscore</li>
</ul>
<pre>
>>> (a for a in xrange(10000))
<generator object at 0x81a8fcc>
>>> b = 'blah'
>>> _
<generator object at 0x81a8fcc>
</pre>
<ul>
<li>AtExit</li>
</ul>
<pre>>>> import atexit
</pre>
<ul>
<li>webbrowser</li>
</ul>
<pre>>>> import webbrowser</pre>
- pydoc's built-in http server
<pre>
>>> import pydoc
>>> pydoc.gui()
</pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/116724#1167241Answer by tghw for Hidden features of Pythontghw2008-09-22T18:48:03Z2008-09-22T18:48:03Z<p><strong>__getattr__()</strong></p>
<p><code>getattr</code> is a really nice way to make generic classes, which is especially useful if you're writing an API. For example, in the <a href="http://support.fogcreek.com/default.asp?W1048" rel="nofollow">FogBugz Python API</a>, <code>getattr</code> is used to pass method calls on to the web service seamlessly:</p>
<pre><code>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]
...
</code></pre>
<p>When someone calls <code>FogBugz.search(q='bug')</code>, they don't get actually call a <code>search</code> method. Instead, <code>getattr</code> handles the call by creating a new function that wraps the <code>makerequest</code> 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.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/117116#11711669Answer by Dave for Hidden features of PythonDave2008-09-22T19:51:20Z2008-09-22T19:51:20Z<p><strong>enumerate</strong></p>
<p>Wrap an iterable with enumerate and it will yield the item along with it's index.</p>
<p>For example:</p>
<pre><code>
>>> 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
>>>
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/118202#1182029Answer by Alexander Kojevnikov for Hidden features of PythonAlexander Kojevnikov2008-09-22T23:22:54Z2009-06-27T23:06:20Z<p><strong>Ternary operator</strong></p>
<pre><code>>>> 'ham' if True else 'spam'
'ham'
>>> 'ham' if False else 'spam'
'spam'
</code></pre>
<p>This was added in 2.5, prior to that you could use:</p>
<pre><code>>>> True and 'ham' or 'spam'
'ham'
>>> False and 'ham' or 'spam'
'spam'
</code></pre>
<p>However, if the values you want to work with would be considered false, there is a difference:</p>
<pre><code>>>> [] if True else 'spam'
[]
>>> True and [] or 'spam'
'spam'
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/118312#1183124Answer by Dan for Hidden features of PythonDan2008-09-22T23:56:40Z2008-09-22T23:56:40Z<p>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.</p>
<pre><code>>>> 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}
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/120074#1200741Answer by Rafał Dowgird for Hidden features of PythonRafał Dowgird2008-09-23T09:41:41Z2008-09-23T09:41:41Z<p>Tuple unpacking in for loops, list comprehensions and generator expressions:</p>
<pre><code>>>> l=[(1,2),(3,4)]
>>> [a+b for a,b in l ]
[3,7]
</code></pre>
<p>Useful in this idiom for iterating over (key,data) pairs in dictionaries:</p>
<pre><code>d = { 'x':'y', 'f':'e'}
for name, value in d.items(): # one can also use iteritems()
print "name:%s, value:%s" % (name,value)
</code></pre>
<p>prints:</p>
<pre><code>name:x, value:y
name:f, value:e
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/120247#1202476Answer by csl for Hidden features of Pythoncsl2008-09-23T10:34:35Z2008-09-23T10:34:35Z<p><strong>"Unpacking" to function parameters</strong></p>
<pre><code>def foo(a, b, c):
print a, b, c
bar = (3, 14, 15)
foo(*bar)
</code></pre>
<p>When executed prints:</p>
<pre><code>3 14 15
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/122577#1225771Answer by Constantin for Hidden features of PythonConstantin2008-09-23T17:48:20Z2008-09-23T17:48:20Z<p><strong>Objects in boolean context</strong></p>
<p>Empty tuples, lists, dicts, strings and many other objects are equivalent to False in boolean context (and non-empty are equivalent to True).</p>
<pre><code>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!'
</code></pre>
<p>This allows logical operations to return one of it's operands instead of True/False, which is useful in some situations:</p>
<pre><code>s = t or "Default value" # s will be assigned "Default value"
# if t is false/empty/none
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/125185#1251851Answer by Dan Udey for Hidden features of PythonDan Udey2008-09-24T03:03:20Z2008-09-24T03:03:20Z<p>The first-classness of everything ('everything is an object'), and the mayhem this can cause.</p>
<pre><code>>>> x = 5
>>> y = 10
>>>
>>> def sq(x):
... return x * x
...
>>> def plus(x):
... return x + x
...
>>> (sq,plus)[y>x](y)
20
</code></pre>
<p>The last line creates a tuple containing the two functions, then evaluates y>x (True) and uses that as an index to the tuple (by casting it to an int, 1), and then calls that function with parameter y and shows the result.</p>
<p>For further abuse, if you were returning an object with an index (e.g. a list) you could add further square brackets on the end; if the contents were callable, more parentheses, and so on. For extra perversion, use the result of code like this as the expression in another example (i.e. replace y>x with this code):</p>
<pre><code>(sq,plus)[y>x](y)[4](x)
</code></pre>
<p>This showcases two facets of Python - the 'everything is an object' philosophy taken to the extreme, and the methods by which improper or poorly-conceived use of the language's syntax can lead to completely unreadable, unmaintainable spaghetti code that fits in a single expression.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/135024#1350246Answer by Torsten Marek for Hidden features of PythonTorsten Marek2008-09-25T18:22:24Z2009-06-27T23:10:19Z<p>Assigning and deleting slices:</p>
<pre><code>>>> 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]
</code></pre>
<p><em>Note</em>: when assigning to extended slices (<code>s[start:stop:step]</code>), the assigned iterable must have the same length as the slice.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/141900#1419007Answer by Henry Precheur for Hidden features of PythonHenry Precheur2008-09-26T20:51:53Z2008-09-26T20:51:53Z<p>dict's constructor accepts keyword arguments:</p>
<pre><code>>>> dict(foo=1, bar=2)
{'foo': 1, 'bar': 2}
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/142639#1426390Answer by fivebells for Hidden features of Pythonfivebells2008-09-27T00:42:45Z2008-09-27T00:42:45Z<p>Not an out-of-the-box feature, but <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/" rel="nofollow">Pyrex</a> is incredibly useful.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/143636#143636151Answer by BatchyX for Hidden features of PythonBatchyX2008-09-27T13:18:09Z2009-09-04T14:24:43Z<p><b>Get the python regex parse tree to debug your regex</b></p>
<p>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.</p>
<p>Fortunately, python have a really hidden feature to print the regex parse tree,
by passing the undocumented, experimental, hidden flag re.DEBUG (actually, 128) to re.compile</p>
<pre><code>>>> re.compile("^\[font(?:=(?P<size>[-+][0-9]{1,2}))?\](.*?)[/font]",
re.DEBUG)
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
</code></pre>
<p>Once you understand the syntax, you can spot your errors.
There we can see that i forgot to escape the [] in [/font].</p>
<p>Of course you can combine it with whatever flags you want, like commented regexes :</p>
<pre><code>>>> 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
""", re.DEBUG+re.VERBOSE+re.DOTALL)
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/143659#14365918Answer by spiv for Hidden features of Pythonspiv2008-09-27T13:37:41Z2008-09-27T13:37:41Z<p><strong>Built-in base64, zlib, and rot13 codecs</strong></p>
<p>Strings have <code>encode</code> and <code>decode</code> methods. Usually this is used for converting <code>str</code> to <code>unicode</code> and vice versa, e.g. with <code>u = s.encode('utf8')</code>. But there are some other handy builtin codecs. Compression and decompression with zlib (and bz2) is available without an explicit import:</p>
<pre><code>>>> s = 'a' * 100
>>> s.encode('zlib')
'x\x9cKL\xa4=\x00\x00zG%\xe5'
</code></pre>
<p>Similarly you can encode and decode base64:</p>
<pre><code>>>> 'Hello world'.encode('base64')
'SGVsbG8gd29ybGQ=\n'
>>> 'SGVsbG8gd29ybGQ=\n'.decode('base64')
'Hello world'
</code></pre>
<p>And, of course, you can rot13:</p>
<pre><code>>>> 'Secret message'.encode('rot13')
'Frperg zrffntr'
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/148211#14821112Answer by tadeusz for Hidden features of Pythontadeusz2008-09-29T10:36:12Z2008-09-29T10:36:12Z<p>Obviously, the antigravity module.
<a href="http://xkcd.com/353/" rel="nofollow">xkcd #353</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/165138#1651384Answer by Robert Rossney for Hidden features of PythonRobert Rossney2008-10-03T00:01:22Z2008-10-03T00:01:22Z<p><strong>Generators</strong></p>
<p>I think that a lot of beginning Python developers pass over generators without really grasping what they're for or getting any sense of their power. It wasn't until I read David M. Beazley's PyCon presentation on generators (it's available <a href="http://www.dabeaz.com/generators/" rel="nofollow">here</a>) that I realized how useful (essential, really) they are. That presentation illuminated what was for me an entirely new way of programming, and I recommend it to anyone who doesn't have a deep understanding of generators.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/168270#16827022Answer by kaptin for Hidden features of Pythonkaptin2008-10-03T18:38:15Z2008-10-03T18:38:15Z<p><strong>Interactive Interpreter Tab Completion</strong></p>
<pre><code>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()
</code></pre>
<p>You will also have to set a PYTHONSTARTUP environment variable.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/171767#1717678Answer by Constantin for Hidden features of PythonConstantin2008-10-05T09:51:09Z2008-10-05T09:51:09Z<p><strong>Python has GOTO</strong></p>
<p>...and it's implemented by <a href="http://entrian.com/goto/" rel="nofollow">external pure-Python module</a> :)</p>
<pre><code>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"
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/196225#1962256Answer by pixelbeat for Hidden features of Pythonpixelbeat2008-10-12T22:40:18Z2008-10-12T22:51:29Z<p>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:</p>
<pre><code>{
"name1": "value1",
"name2": "value2"
}
</code></pre>
<p>Then you could trivially read it like:</p>
<pre><code>config = eval(open("filename").read())
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/196275#1962751Answer by ironfroggy for Hidden features of Pythonironfroggy2008-10-12T23:19:49Z2008-10-12T23:19:49Z<p><strong>Nested Function Parameter Re-binding</strong></p>
<pre><code>def create_printers(n):
for i in xrange(n):
def printer(i=i): # Doesn't work without the i=i
print i
yield printer
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/205889#2058895Answer by mgb for Hidden features of Pythonmgb2008-10-15T18:37:26Z2008-10-15T18:37:26Z<p>A slight misfeature of python. The normal fast way to join a list of strings together is,</p>
<pre><code>''.join(list_of_strings)
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/208087#2080872Answer by Gurch for Hidden features of PythonGurch2008-10-16T10:52:13Z2008-10-16T15:22:59Z<p><a href="http://xkcd.com/353/" rel="nofollow">import antigravity</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/210921#2109212Answer by zaphod for Hidden features of Pythonzaphod2008-10-17T02:19:19Z2008-10-17T02:19:19Z<h3>Private methods and data hiding (encapsulation)</h3>
<p>There's a common idiom in Python of denoting methods and other class members that are not intended to be part of the class's external API by giving them names that start with underscores. This is convenient and works very well in practice, but it gives the false impression that Python does not support true encapsulation of private code and/or data. In fact, Python automatically gives you <a href="http://en.wikipedia.org/wiki/Lexical_closure" rel="nofollow">lexical closures</a>, which make it very easy to encapsulate data in a much more bulletproof way when the situation really warrants it. Here's a contrived example of a class that makes use of this technique:</p>
<pre><code>class MyClass(object):
def __init__(self):
privateData = {}
self.publicData = 123
def privateMethod(k):
print privateData[k] + self.publicData
def privilegedMethod():
privateData['foo'] = "hello "
privateMethod('foo')
self.privilegedMethod = privilegedMethod
def publicMethod(self):
print self.publicData
</code></pre>
<p>And here's a contrived example of its use:</p>
<pre><code>>>> obj = MyClass()
>>> obj.publicMethod()
123
>>> obj.publicData = 'World'
>>> obj.publicMethod()
World
>>> obj.privilegedMethod()
hello World
>>> obj.privateMethod()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'MyClass' object has no attribute 'privateMethod'
>>> obj.privateData
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'MyClass' object has no attribute 'privateData'
</code></pre>
<p>The key is that <code>privateMethod</code> and <code>privateData</code> aren't really attributes of obj at all, so they can't be accessed from outside, nor do they show up in <code>dir()</code> or similar. They're local variables in the constructor, completely inaccessible outside of <code>__init__</code>. However, because of the magic of closures, they really are per-instance variables with the same lifetime as the object with which they're associated, even though there's no way to access them from outside except (in this example) by invoking <code>privilegedMethod</code>. Often this sort of very strict encapsulation is overkill, but sometimes it really can be very handy for keeping an API or a namespace squeaky clean.</p>
<p>In Python 2.x, the only way to have mutable private state is with a mutable object (such as the dict in this example). Many people have remarked on how annoying this can be. Python 3.x will remove this restriction by introducing the <code>nonlocal</code> keyword described in <a href="http://www.python.org/dev/peps/pep-3104/" rel="nofollow">PEP 3104</a>.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/215326#2153268Answer by Kay Schluehr for Hidden features of PythonKay Schluehr2008-10-18T17:44:47Z2008-10-18T17:44:47Z<p><strong>Using keyword arguments as assignments</strong></p>
<p>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:</p>
<pre><code>funcs = []
for k in range(10):
funcs.append( lambda: k)
>>> funcs[0]()
9
>>> funcs[7]()
9
</code></pre>
<p>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:</p>
<pre><code>funcs = []
for k in range(10):
funcs.append( lambda k = k: k)
>>> funcs[0]()
0
>>> funcs[7]()
7
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/218177#2181771Answer by Tupteq for Hidden features of PythonTupteq2008-10-20T11:59:39Z2008-10-20T11:59:39Z<p><strong>Method replacement for object instance</strong></p>
<p>You can replace methods of already created object instances. It allows you to create object instance with different (exceptional) functionality:</p>
<pre><code>>>> class C(object):
... def fun(self):
... print "C.a", self
...
>>> inst = C()
>>> inst.fun() # C.a method is executed
C.a <__main__.C object at 0x00AE74D0>
>>> instancemethod = type(C.fun)
>>>
>>> def fun2(self):
... print "fun2", self
...
>>> inst.fun = instancemethod(fun2, inst, C) # Now we are replace C.a by fun2
>>> inst.fun() # ... and fun2 is executed
fun2 <__main__.C object at 0x00AE74D0>
</code></pre>
<p>As we can <code>C.a</code> was replaced by <code>fun2()</code> in <code>inst</code> instance (<code>self</code> didn't change).</p>
<p>Alternatively we may use <code>new</code> module, but it's depreciated since Python 2.6:</p>
<pre><code>>>> def fun3(self):
... print "fun3", self
...
>>> import new
>>> inst.fun = new.instancemethod(fun3, inst, C)
>>> inst.fun()
fun3 <__main__.C object at 0x00AE74D0>
</code></pre>
<p><strong>Node:</strong> This solution shouldn't be used as general replacement of inheritance mechanism! But it may be very handy in some specific situations (debugging, mocking).</p>
<p><strong>Warning:</strong> This solution will not work for built-in types and for new style classes using slots.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/221874#22187413Answer by Jake for Hidden features of PythonJake2008-10-21T13:26:46Z2008-10-21T13:26:46Z<h3>Referencing a list comprehension as it is being built...</h3>
<p>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.</p>
<pre><code>def unique(my_list):
return [x for x in my_list if x not in locals()['_[1]']]
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/224747#22474716Answer by monkut for Hidden features of Pythonmonkut2008-10-22T07:24:30Z2009-04-10T07:52:55Z<p><a href="http://docs.python.org/library/stdtypes.html#set" rel="nofollow"><strong>set/frozenset</strong></a></p>
<p>Probably an easily overlooked python builtin is "set/frozenset".</p>
<p>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].</p>
<p>Using set() that's exactly what you get:</p>
<pre><code>>>> 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
</code></pre>
<p>And of course to get the number of uniques in a list:</p>
<pre><code>>>> len(set([1,2,1,1,2,3,4]))
4
</code></pre>
<p>You can also find if a list is a subset of another list using, suprise, set().isasubset()</p>
<pre><code>>>> set([1,2,3,4]).isasubset([0,1,2,3,4,5])
True
</code></pre>
<p>For more details:
<a href="http://docs.python.org/library/stdtypes.html#set" rel="nofollow">http://docs.python.org/library/stdtypes.html#set</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/235492#2354920Answer by Karl Anderson for Hidden features of PythonKarl Anderson2008-10-24T22:36:56Z2008-10-24T22:36:56Z<p><strong>Functional support.</strong></p>
<p>Generators and generator expressions, specifically.</p>
<p>Ruby made this mainstream again, but Python can do it just as well. Not as ubiquitous in the libraries as in Ruby, which is too bad, but I like the syntax better, it's simpler.</p>
<p>Because they're not as ubiquitous, I don't see as many examples out there on why they're useful, but they've allowed me to write cleaner, more efficient code.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/261833#2618336Answer by utku_karatas for Hidden features of Pythonutku_karatas2008-11-04T13:09:28Z2008-11-04T13:09:28Z<p>While debugging complex data structures <em>pprint</em> module comes handy.</p>
<p>Quoting from the docs..</p>
<pre><code>>>> 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']
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/299781#29978111Answer by jamesturk for Hidden features of Pythonjamesturk2008-11-18T19:06:36Z2008-11-18T19:06:36Z<pre><code>>>> 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]
</code></pre>
<p>not really a hidden feature but partial is extremely useful for having late evaluation of functions.</p>
<p>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)</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/322868#3228680Answer by M. Utku ALTINKAYA for Hidden features of PythonM. Utku ALTINKAYA2008-11-27T03:24:04Z2008-11-27T03:24:04Z<pre><code>is_ok() and "Yes" or "No"
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/326615#3266150Answer by Steen for Hidden features of PythonSteen2008-11-28T20:34:37Z2008-11-28T20:34:37Z<p>...that dict has a <a href="http://docs.python.org/library/stdtypes.html#dict.get" rel="nofollow">default value</a> of None, thereby avoiding KeyErrors:</p>
<pre>
In [1]: test = { 1 : 'a' }
In [2]: test[2]
---------------------------------------------------------------------------
Traceback (most recent call last)
<ipython console> in ()
: 2
In [3]: test.get( 2 )
In [4]: test.get( 1 )
Out[4]: 'a'
In [5]: test.get( 2 ) == None
Out[5]: True
</pre>
<p>and even to specify this 'at the scene':</p>
<pre>
In [6]: test.get( 2, 'Some' ) == 'Some'
Out[6]: True
</pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/326893#3268935Answer by FA for Hidden features of PythonFA2008-11-28T23:27:59Z2008-11-28T23:27:59Z<p>You can easily transpose an array with zip.</p>
<pre><code>a = [(1,2), (3,4)]
zip(*a)
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/373949#37394914Answer by Abgan for Hidden features of PythonAbgan2008-12-17T08:09:01Z2009-06-27T22:56:18Z<p><strong>Negative round</strong></p>
<p>The <code>round()</code> function rounds a float number to given precision in decimal digits, but precision can be negative:</p>
<pre><code>>>> str(round(1234.5678, -2))
'1200.0'
>>> str(round(1234.5678, 2))
'1234.57'
</code></pre>
<p><em>Note:</em> <code>round()</code> always returns a float, <code>str()</code> used in the above example because floating point math is inexact, and under 2.x the second example can print as <code>1234.5700000000001</code>. Also see the <a href="http://docs.python.org/library/decimal.html#module-decimal" rel="nofollow"><code>decimal</code></a> module.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/393927#39392712Answer by Alabaster Codify for Hidden features of PythonAlabaster Codify2008-12-26T16:05:39Z2008-12-27T01:42:55Z<p><strong>An interpreter within the interpreter</strong></p>
<p>The standard library's <a href="http://docs.python.org/library/code.html" rel="nofollow">code</a> 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 <a href="http://stackoverflow.com/questions/393871/scripting-inside-a-python-application#393921">here</a>)</p>
<pre><code>$ 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'
</code></pre>
<p>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.</p>
<p><a href="http://turbogears.com/" rel="nofollow">TurboGears</a> uses this to great effect by having a WebConsole from which you can query the state of you live web app.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/405085#40508513Answer by Kiv for Hidden features of PythonKiv2009-01-01T16:05:42Z2009-01-01T16:05:42Z<p><strong>Operator overloading for the <code>set</code> builtin:</strong></p>
<pre><code>>>> 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}
</code></pre>
<p>More detail from the standard library reference: <a href="http://docs.python.org/dev/3.0/library/stdtypes.html#set-types-set-frozenset" rel="nofollow">Set Types</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/405094#4050942Answer by Benjamin Peterson for Hidden features of PythonBenjamin Peterson2009-01-01T16:14:19Z2009-01-01T16:14:19Z<p>You can override the mro of a class with a metaclass</p>
<pre><code>>>> class A(object):
... def a_method(self):
... print("A")
...
>>> class B(object):
... def b_method(self):
... print("B")
...
>>> class MROMagicMeta(type):
... def mro(cls):
... return (cls, B, object)
...
>>> class C(A, metaclass=MROMagicMeta):
... def c_method(self):
... print("C")
...
>>> cls = C()
>>> cls.c_method()
C
>>> cls.a_method()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'C' object has no attribute 'a_method'
>>> cls.b_method()
B
>>> type(cls).__bases__
(<class '__main__.A'>,)
>>> type(cls).__mro__
(<class '__main__.C'>, <class '__main__.B'>, <class 'object'>)
</code></pre>
<p>It's probably hidden for a good reason. :)</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/407695#4076953Answer by Gorgapor for Hidden features of PythonGorgapor2009-01-02T18:48:52Z2009-01-02T18:48:52Z<p>The <code>reversed()</code> builtin. It makes iterating much cleaner in many cases.</p>
<p>quick example:</p>
<pre><code>for i in reversed([1, 2, 3]):
print(i)
</code></pre>
<p>produces:</p>
<pre><code>3
2
1
</code></pre>
<p>However, <code>reversed()</code> also works with arbitrary iterators, such as lines in a file, or generator expressions.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/407754#4077541Answer by sprintf for Hidden features of Pythonsprintf2009-01-02T19:10:54Z2009-01-02T19:10:54Z<p><strong>The Zen of Python</strong></p>
<pre><code>>>> import this
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/435187#4351872Answer by Tom Viner for Hidden features of PythonTom Viner2009-01-12T11:38:56Z2009-01-12T16:01:13Z<p><strong>pdb — The Python Debugger</strong></p>
<p>As a programmer, one of the first things that you need for serious program development is a debugger. Python has one built-in which is available as a module called pdb (for "Python DeBugger", naturally!).</p>
<p><a href="http://docs.python.org/library/pdb.html" rel="nofollow">http://docs.python.org/library/pdb.html</a></p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/585473#5854731Answer by Mykola Kharechko for Hidden features of PythonMykola Kharechko2009-02-25T10:29:19Z2009-02-25T11:00:49Z<p>Objects of small intgers (-5 .. 256) never created twice:</p>
<pre>
<code>
>>> a1 = -5; b1 = 256
>>> a2 = -5; b2 = 256
>>> id(a1) == id(a2), id(b1) == id(b2)
(True, True)
>>>
>>> c1 = -6; d1 = 257
>>> c2 = -6; d2 = 257
>>> id(c1) == id(c2), id(d1) == id(d2)
(False, False)
>>>
</code>
</pre>
<p>Edit:
List objects never destroyed (only objects in lists). Python has array in which it keeps up to 80 empty lists. When you destroy list object - python puts it to that array and when you create new list - python gets last puted list from this array:</p>
<pre>
<code>
>>> a = [1,2,3]; a_id = id(a)
>>> b = [1,2,3]; b_id = id(b)
>>> del a; del b
>>> c = [1,2,3]; id(c) == b_id
True
>>> d = [1,2,3]; id(d) == a_id
True
>>>
</code>
</pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/603391#6033912Answer by becomingGuru for Hidden features of PythonbecomingGuru2009-03-02T18:16:53Z2009-03-02T18:23:52Z<p>Creating dictionary of two sequences that have related data</p>
<pre><code>In [15]: t1 = (1, 2, 3)
In [16]: t2 = (4, 5, 6)
In [17]: dict (zip(t1,t2))
Out[17]: {1: 4, 2: 5, 3: 6}
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/603408#6034081Answer by becomingGuru for Hidden features of PythonbecomingGuru2009-03-02T18:23:19Z2009-07-06T18:29:40Z<p>Simulating the tertiary operator using and and or.</p>
<p>and and or operators in python return the objects themselves rather than Booleans. Thus:</p>
<pre><code>In [18]: a = True
In [19]: a and 3 or 4
Out[19]: 3
In [20]: a = False
In [21]: a and 3 or 4
Out[21]: 4
</code></pre>
<p>However, Py 2.5 seems to have added an explicit tertiary operator</p>
<pre><code> In [22]: a = 5 if True else '6'
In [23]: a
Out[23]: 5
</code></pre>
<p>Well, this works if you are sure that your true clause does not evaluate to False. example:</p>
<pre><code>>>> def foo():
... print "foo"
... return 0
...
>>> def bar():
... print "bar"
... return 1
...
>>> 1 and foo() or bar()
foo
bar
1
</code></pre>
<p>To get it right, you've got to just a little bit more: </p>
<pre><code>>>> (1 and [foo()] or [bar()])[0]
foo
0
</code></pre>
<p>However, this isn't as pretty. if your version of python supports it, use the conditional operator.</p>
<pre><code>>>> foo() if True or bar()
foo
0
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/632582#6325824Answer by david for Hidden features of Pythondavid 2009-03-10T22:47:20Z2009-03-10T22:47:20Z<p><a href="http://docs.python.org/library/inspect.html?highlight=inspect#retrieving-source-code" rel="nofollow">inspect</a> module is also a cool feature.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/652687#6526871Answer by J.F. Sebastian for Hidden features of PythonJ.F. Sebastian2009-03-17T00:56:53Z2009-03-17T01:03:17Z<h3>The <code>spam</code> module in standard Python</h3>
<p>It is used for testing purposes. </p>
<p>I've picked it from <a href="http://starship.python.net/crew/theller/ctypes/tutorial.html" rel="nofollow"><code>ctypes</code> tutorial</a>. Try it yourself:</p>
<pre><code>>>> import __hello__
Hello world...
>>> type(__hello__)
<type 'module'>
>>> from __phello__ import spam
Hello world...
Hello world...
>>> type(spam)
<type 'module'>
>>> help(spam)
Help on module __phello__.spam in __phello__:
NAME
__phello__.spam
FILE
c:\python26\<frozen>
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/781998#7819980Answer by Mike for Hidden features of PythonMike2009-04-23T14:26:17Z2009-04-23T14:26:17Z<p><strong>Memory Management</strong></p>
<p>Python dynamically allocates memory and uses garbage collection to recover unused space. Once an object is out of scope, and no other variables reference it, it will be recovered. I do not have to worry about buffer overruns and slowly growing server processes. Memory management is also a feature of other dynamic languages but Python just does it so well.</p>
<p>Of course, we must watch out for circular references and keeping references to objects which are no longer needed, but weak references help a lot here.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/804238#8042389Answer by Scott Kirkwood for Hidden features of PythonScott Kirkwood2009-04-29T20:56:59Z2009-04-29T20:56:59Z<h1>re can call functions!</h1>
<p>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.</p>
<pre><code>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?'
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/938602#9386025Answer by Tom for Hidden features of PythonTom2009-06-02T09:12:21Z2009-06-02T09:12:21Z<p>i personally love the <strong>3 different quotes</strong></p>
<pre><code>str = "im a string 'but still i can use quotes' inside myself!"
str = """ for some messy multi line strings
such as
<html>
<head> ... </head>"""
</code></pre>
<p>also cool: not having to escape regexes, avoiding horrible backslash salad by using <strong>raw strings</strong>:</p>
<pre><code>str2 = r"\n"
print str2
>> \n
</code></pre>
<p>and my fav:</p>
<p>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!)</p>
<p><strong>the 3 times happyness dict package:</strong></p>
<pre><code>
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!
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/967971#9679714Answer by Ken Arnold for Hidden features of PythonKen Arnold2009-06-09T03:14:25Z2009-06-09T03:14:25Z<p>One word: <a href="http://ipython.scipy.org/moin/" rel="nofollow">IPython</a></p>
<p>Tab introspection, pretty-printing, <code>%debug</code>, history management, <code>pylab</code>, ... well worth the time to learn well.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/967998#9679982Answer by Ken Arnold for Hidden features of PythonKen Arnold2009-06-09T03:27:08Z2009-06-09T03:27:08Z<p>Reloading modules enables a "live-coding" style. But class instances don't update. Here's why, and how to get around it. Remember, everything, yes, <em>everything</em> is an object.</p>
<pre><code>>>> from a_package import a_module
>>> cls = a_module.SomeClass
>>> obj = cls()
>>> obj.method()
(old method output)
</code></pre>
<p>Now you change the method in a_module.py and want to update your object.</p>
<pre><code>>>> reload(a_module)
>>> a_module.SomeClass is cls
False # Because it just got freshly created by reload.
>>> obj.method()
(old method output)
</code></pre>
<p>Here's one way to update it (but consider it running with scissors):</p>
<pre><code>>>> obj.__class__ is cls
True # it's the old class object
>>> obj.__class__ = a_module.SomeClass # pick up the new class
>>> obj.method()
(new method output)
</code></pre>
<p>This is "running with scissors" because the object's internal state may be different than what the new class expects. This works for really simple cases, but beyond that, <code>pickle</code> is your friend. It's still helpful to understand why this works, though.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1013448#10134486Answer by Markus for Hidden features of PythonMarkus2009-06-18T15:40:54Z2009-06-18T15:40:54Z<p>Not very hidden, but functions have attributes:</p>
<pre><code>def doNothing():
pass
doNothing.monkeys = 4
print doNothing.monkeys
4
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1013470#10134701Answer by Markus for Hidden features of PythonMarkus2009-06-18T15:45:23Z2009-06-18T15:45:23Z<p>You can decorate functions with classes - replacing the function with a class instance:</p>
<pre><code>class countCalls(object):
""" decorator replaces a function with a "countCalls" instance
which behaves like the original function, but keeps track of calls
>>> @countCalls
... def doNothing():
... pass
>>> doNothing()
>>> doNothing()
>>> print doNothing.timesCalled
2
"""
def __init__ (self, functionToTrack):
self.functionToTrack = functionToTrack
self.timesCalled = 0
def __call__ (self, *args, **kwargs):
self.timesCalled += 1
return self.functionToTrack(*args, **kwargs)
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1013517#10135172Answer by Markus for Hidden features of PythonMarkus2009-06-18T15:54:00Z2009-06-18T15:54:00Z<p>With a minute amount of work, the threading module becomes amazingly easy to use. This decorator changes a function so that it runs in its own thread, returning a placeholder class instance instead of its regular result. You can probe for the answer by checking placeolder.result or wait for it by calling placeholder.awaitResult()</p>
<pre><code>def threadify(function):
"""
exceptionally simple threading decorator. Just:
>>> @threadify
... def longOperation(result):
... time.sleep(3)
... return result
>>> A= longOperation("A has finished")
>>> B= longOperation("B has finished")
A doesn't have a result yet:
>>> print A.result
None
until we wait for it:
>>> print A.awaitResult()
A has finished
we could also wait manually - half a second more should be enough for B:
>>> time.sleep(0.5); print B.result
B has finished
"""
class thr (threading.Thread,object):
def __init__(self, *args, **kwargs):
threading.Thread.__init__ ( self )
self.args, self.kwargs = args, kwargs
self.result = None
self.start()
def awaitResult(self):
self.join()
return self.result
def run(self):
self.result=function(*self.args, **self.kwargs)
return thr
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1024693#102469311Answer by André for Hidden features of PythonAndré2009-06-21T20:32:22Z2009-06-21T20:35:44Z<p>ROT13 is a valid encoding for source code, when you use the right coding declaration at the top of the code file:</p>
<pre><code>#!/usr/bin/env python
# -*- coding: rot13 -*-
cevag "Uryyb fgnpxbiresybj!".rapbqr("rot13")
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1088213#10882130Answer by sproaty for Hidden features of Pythonsproaty2009-07-06T17:28:20Z2009-07-06T17:28:20Z<p>If you've renamed a class in your application where you're loading user-saved files via Pickle, and one of the renamed classes are stored in a user's old save, you will not be able to load in that pickled file.</p>
<p>However, simply add in a reference to your class definition and everything's good:</p>
<p>e.g., before:</p>
<pre><code>class Bleh:
pass
</code></pre>
<p>now, </p>
<pre><code>class Blah:
pass
</code></pre>
<p>so, your user's pickled saved file contains a reference to Bleh, which doesn't exist due to the rename. The fix?</p>
<pre><code>Bleh = Blah
</code></pre>
<p>simple!</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1338523#13385230Answer by Greg for Hidden features of PythonGreg2009-08-27T02:14:14Z2009-10-15T00:14:03Z<p>The fact that EVERYTHING is an object, and as such is extensible. I can add member variables as metadata to a function that I define:</p>
<pre><code>>>> def addInts(x,y):
... return x + y
>>> addInts.params = ['integer','integer']
>>> addInts.returnType = 'integer'
</code></pre>
<p>This can be very useful for writing dynamic unit tests, e.g.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1399564#13995640Answer by Busted Keaton for Hidden features of PythonBusted Keaton2009-09-09T13:01:23Z2009-09-09T13:01:23Z<p>The getattr built-in function :</p>
<pre><code>>>> class C():
def getMontys(self):
self.montys = ['Cleese','Palin','Idle','Gilliam','Jones','Chapman']
return self.montys
>>> c = C()
>>> getattr(c,'getMontys')()
['Cleese', 'Palin', 'Idle', 'Gilliam', 'Jones', 'Chapman']
>>>
</code></pre>
<p>Useful if you want to dispatch function depending on the context. See examples in Dive Into Python (<a href="http://diveintopython.org/power%5Fof%5Fintrospection/getattr.html" rel="nofollow">Here</a>)</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1592819#15928190Answer by Cixate for Hidden features of PythonCixate2009-10-20T06:35:25Z2009-10-20T06:35:25Z<p>Simple way to test if a key is in a dict:</p>
<pre><code>>>> 'key' in { 'key' : 1 }
True
>>> d = dict(key=1, key2=2)
>>> if 'key' in d:
... print 'Yup'
...
Yup
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1602751#16027510Answer by pst for Hidden features of Pythonpst2009-10-21T18:39:29Z2009-10-21T18:59:49Z<p><strong>Classes as first-class objects (shown through a dynamic class definition)</strong></p>
<p>Note the use of the closure as well. If this particular example looks like a "right" approach to a problem, carefully reconsider ... several times :)</p>
<pre><code>def makeMeANewClass(parent, value):
class IAmAnObjectToo(parent):
def theValue(self):
return value
return IAmAnObjectToo
Klass = makeMeANewClass(str, "fred")
o = Klass()
print isinstance(o, str) # => True
print o.theValue() # => fred
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1602786#16027860Answer by pst for Hidden features of Pythonpst2009-10-21T18:44:16Z2009-10-21T18:44:16Z<p><strong><em>Exposing Mutable Buffers</em></strong></p>
<p>Using the Python <a href="http://docs.python.org/c-api/buffer.html" rel="nofollow">Buffer Protocol</a> to <em>expose mutable byte-oriented buffers</em> in Python (2.5/2.6).</p>
<p>(Sorry, no code here. Requires use of low-level C API or existing adapter module).</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1631763#16317631Answer by Denis Otkidach for Hidden features of PythonDenis Otkidach2009-10-27T15:49:21Z2009-10-27T15:49:21Z<h2>Extending properties (defined as descriptor) in subclasses</h2>
<p>Sometimes it's useful to extent (modify) value "returned" by descriptor in subclass. It can be easily done with <code>super()</code>:</p>
<pre><code>class A(object):
@property
def prop(self):
return {'a': 1}
class B(A):
@property
def prop(self):
return dict(super(B, self).prop, b=2)
</code></pre>
<p>Store this in <code>test.py</code> and run <code>python -i test.py</code> (<strong>another hidden feature: <code>-i</code> option executed the script and allow you to continue in interactive mode</strong>):</p>
<pre><code>>>> B().prop
{'a': 1, 'b': 2}
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1667256#16672560Answer by Amol for Hidden features of PythonAmol2009-11-03T13:10:07Z2009-11-06T14:47:37Z<p>The pythonic idiom <code>x = ... if ... else ...</code> is far superior to <code>x = ... and ... or ...</code> and here is why:</p>
<p>Although the statement </p>
<pre><code>x = 3 if (y == 1) else 2
</code></pre>
<p>Is equivalent to</p>
<pre><code>x = y == 1 and 3 or 2
</code></pre>
<p>if you use the <code>x = ... and ... or ...</code> idiom, some day you may get bitten by this tricky situation:</p>
<pre><code>x = 0 if True else 1 # sets x equal to 0
</code></pre>
<p>and therefore is not equivalent to </p>
<pre><code>x = True and 0 or 1 # sets x equal to 1
</code></pre>
<p>For more on the proper way to do this,
see <a href="http://stackoverflow.com/questions/101268/hidden-features-of-python/116480#116480">http://stackoverflow.com/questions/101268/hidden-features-of-python/116480#116480</a>.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/1687543#16875430Answer by kaizer.se for Hidden features of Pythonkaizer.se2009-11-06T13:18:00Z2009-11-06T13:18:00Z<p>Python <a href="http://bugs.python.org/issue6595" rel="nofollow">can understand any kind of unicode digits</a>, not just the ASCII kind:</p>
<pre><code>>>> s = u'10585'
>>> s
u'\uff11\uff10\uff15\uff18\uff15'
>>> print s
10585
>>> int(s)
10585
>>> float(s)
10585.0
</code></pre>