Hidden features of Python - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T18:52:10Z http://stackoverflow.com/feeds/question/101268 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/101268/hidden-features-of-python 239 Hidden features of Python jelovirt 2008-09-19T11:50:36Z 2009-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#101276 30 Answer by cleg for Hidden features of Python cleg 2008-09-19T11:53:19Z 2009-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#101280 2 Answer by Oko for Hidden features of Python Oko 2008-09-19T11:53:55Z 2008-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#101286 7 Answer by Matthias Kestenholz for Hidden features of Python Matthias Kestenholz 2008-09-19T11:55:12Z 2008-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#101288 0 Answer by cleg for Hidden features of Python cleg 2008-09-19T11:55:26Z 2008-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#101310 108 Answer by freespace for Hidden features of Python freespace 2008-09-19T11:59:28Z 2008-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#101447 87 Answer by DzinX for Hidden features of Python DzinX 2008-09-19T12:32:26Z 2008-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>&gt;&gt;&gt; def print_args(function): &gt;&gt;&gt; def wrapper(*args, **kwargs): &gt;&gt;&gt; print 'Arguments:', args, kwargs &gt;&gt;&gt; return function(*args, **kwargs) &gt;&gt;&gt; return wrapper &gt;&gt;&gt; @print_args &gt;&gt;&gt; def write(text): &gt;&gt;&gt; print text &gt;&gt;&gt; write('foo') Arguments: ('foo',) {} foo </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/101537#101537 77 Answer by dungema for Hidden features of Python dungema 2008-09-19T12:44:42Z 2009-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>&gt;&gt;&gt; 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 ... """ &gt;&gt;&gt; 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>&gt;&gt;&gt; p = re.compile(r'(?P&lt;word&gt;\b\w+\b)') &gt;&gt;&gt; m = p.search( '(((( Lots of punctuation )))' ) &gt;&gt;&gt; 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>&gt;&gt;&gt; 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 ... ) &gt;&gt;&gt; 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#101549 25 Answer by Rafał Dowgird for Hidden features of Python Rafał Dowgird 2008-09-19T12:45:44Z 2008-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#101731 16 Answer by Ber for Hidden features of Python Ber 2008-09-19T13:16:49Z 2009-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#101739 82 Answer by Rafał Dowgird for Hidden features of Python Rafał Dowgird 2008-09-19T13:18:19Z 2008-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>&gt;&gt;&gt; g = mygen() &gt;&gt;&gt; g.next() 5 &gt;&gt;&gt; g.next() 5 &gt;&gt;&gt; g.send(7) #we send this back to the generator 7 &gt;&gt;&gt; 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#101744 4 Answer by phjr for Hidden features of Python phjr 2008-09-19T13:19:13Z 2008-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#101778 1 Answer by Kevin Little for Hidden features of Python Kevin Little 2008-09-19T13:25:43Z 2008-09-19T13:25:43Z <pre><code>&gt;&gt;&gt; x=[1,1,2,'a','a',3] &gt;&gt;&gt; y = [ _x for _x in x if not _x in locals()['_[1]'] ] &gt;&gt;&gt; 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#101840 83 Answer by Rafał Dowgird for Hidden features of Python Rafał Dowgird 2008-09-19T13:33:42Z 2008-09-19T13:33:42Z <p>The step argument in slice operators. For example:</p> <pre><code>a = [1,2,3,4,5] &gt;&gt;&gt; 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>&gt;&gt;&gt; a[::-1] [5,4,3,2,1] </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/101892#101892 8 Answer by e-satis for Hidden features of Python e-satis 2008-09-19T13:39:43Z 2008-10-10T00:12:25Z <p>Implicit concatenation:</p> <pre><code>&gt;&gt;&gt; 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#101919 22 Answer by J.F. Sebastian for Hidden features of Python J.F. Sebastian 2008-09-19T13:43:46Z 2009-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#101945 168 Answer by Thomas Wouters for Hidden features of Python Thomas Wouters 2008-09-19T13:47:15Z 2009-10-21T18:44:04Z <p><strong>Chaining comparison operators</strong>:</p> <pre><code>&gt;&gt;&gt; x = 5 &gt;&gt;&gt; 1 &lt; x &lt; 10 True &gt;&gt;&gt; 10 &lt; x &lt; 20 False &gt;&gt;&gt; x &lt; 10 &lt; x*10 &lt; 100 True &gt;&gt;&gt; 10 &gt; x &lt;= 9 True &gt;&gt;&gt; 5 == x &gt; 4 True </code></pre> <p>In case you're thinking it's doing, '1 &lt; x', which comes out as True, and then comparing 'True &lt; 10', which is also True, then no, that's really not what happens (see the last example.) It's really translating into <code>1 &lt; x and x &lt; 10</code>, and <code>x &lt; 10 and 10 &lt; x * 10 and x*10 &lt; 100</code>, but with less typing and each term is only evaluated once.</p> http://stackoverflow.com/questions/101268/hidden-features-of-python/101971#101971 2 Answer by Thomas Wouters for Hidden features of Python Thomas Wouters 2008-09-19T13:51:54Z 2008-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#102006 31 Answer by Thomas Wouters for Hidden features of Python Thomas Wouters 2008-09-19T13:56:27Z 2008-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#102037 54 Answer by Lucas S. for Hidden features of Python Lucas S. 2008-09-19T14:00:11Z 2008-10-10T00:07:26Z <p><strong>One line Variable value swapping</strong></p> <pre><code>&gt;&gt;&gt; a = 10 &gt;&gt;&gt; b = 5 &gt;&gt;&gt; a, b = b, a &gt;&gt;&gt; print a 5 &gt;&gt;&gt; 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#102062 42 Answer by Nick Johnson for Hidden features of Python Nick Johnson 2008-09-19T14:04:38Z 2009-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#102065 58 Answer by Pierre-Jean Coudert for Hidden features of Python Pierre-Jean Coudert 2008-09-19T14:04:50Z 2008-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 &gt;= 0. If the result is small enough to fit in an int, return an int. Else return a long. &gt;&gt;&gt; [factorial(n) for n in range(6)] [1, 1, 2, 6, 24, 120] &gt;&gt;&gt; factorial(-1) Traceback (most recent call last): ... ValueError: n must be &gt;= 0 Factorials of floats are OK, but the float must be an exact integer: """ import math if not n &gt;= 0: raise ValueError("n must be &gt;= 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 &lt;= 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#102202 116 Answer by mbac32768 for Hidden features of Python mbac32768 2008-09-19T14:20:38Z 2009-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#103198 0 Answer by pi for Hidden features of Python pi 2008-09-19T15:55:40Z 2009-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 &lt;= 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#105325 8 Answer by davidavr for Hidden features of Python davidavr 2008-09-19T20:30:28Z 2008-09-19T20:30:28Z <p><strong>The Python Interpreter</strong></p> <pre><code>&gt;&gt;&gt; </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#106868 5 Answer by Jeremy Michael Cantrell for Hidden features of Python Jeremy Michael Cantrell 2008-09-20T02:55:10Z 2009-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>&gt;&gt;&gt; def jim(phrase): ... return 'Jim says, "%s".' % phrase &gt;&gt;&gt; def say_something(person, phrase): ... print person(phrase) &gt;&gt;&gt; say_something(jim, 'hey guys') 'Jim says, "hey guys".' </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/108297#108297 33 Answer by Torsten Marek for Hidden features of Python Torsten Marek 2008-09-20T14:25:58Z 2008-09-23T17:39:56Z <p><strong>Creating new types at runtime</strong></p> <pre><code>&gt;&gt;&gt; NewType = type("NewType", (object,), {"x": "hello"}) &gt;&gt;&gt; n = NewType() &gt;&gt;&gt; n.x "hello" </code></pre> <p>which is exactly the same as</p> <pre><code>&gt;&gt;&gt; class NewType(object): &gt;&gt;&gt; x = "hello" &gt;&gt;&gt; n = NewType() &gt;&gt;&gt; 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#108312 13 Answer by Torsten Marek for Hidden features of Python Torsten Marek 2008-09-20T14:31:17Z 2008-09-20T14:31:17Z <p><strong>Interleaving <code>if</code> and <code>for</code> in list comprehensions</strong></p> <pre><code>&gt;&gt;&gt; [(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#109182 57 Answer by Ycros for Hidden features of Python Ycros 2008-09-20T20:06:16Z 2009-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#109194 3 Answer by daniel for Hidden features of Python daniel 2008-09-20T20:09:34Z 2008-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#111176 26 Answer by e-satis for Hidden features of Python e-satis 2008-09-21T15:00:37Z 2009-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#111970 38 Answer by Rory for Hidden features of Python Rory 2008-09-21T20:18:19Z 2008-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#112274 1 Answer by Armin Ronacher for Hidden features of Python Armin Ronacher 2008-09-21T21:49:26Z 2008-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>&gt;&gt;&gt; def f(): ... exec "a = 42" ... return a ... &gt;&gt;&gt; def g(): ... a = 42 ... return a ... &gt;&gt;&gt; import dis &gt;&gt;&gt; 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 &gt;&gt;&gt; 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#112286 83 Answer by Armin Ronacher for Hidden features of Python Armin Ronacher 2008-09-21T21:54:12Z 2008-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>&gt;&gt;&gt; class MyDict(dict): ... def __missing__(self, key): ... self[key] = rv = [] ... return rv ... &gt;&gt;&gt; m = MyDict() &gt;&gt;&gt; m["foo"].append(1) &gt;&gt;&gt; m["foo"].append(2) &gt;&gt;&gt; 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>&gt;&gt;&gt; from collections import defaultdict &gt;&gt;&gt; m = defaultdict(list) &gt;&gt;&gt; m["foo"].append(1) &gt;&gt;&gt; m["foo"].append(2) &gt;&gt;&gt; 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#112296 1 Answer by Armin Ronacher for Hidden features of Python Armin Ronacher 2008-09-21T21:57:37Z 2008-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>&gt;&gt;&gt; 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 ... &gt;&gt;&gt; u = User() &gt;&gt;&gt; u.username = "foo" username set &gt;&gt;&gt; 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#112303 48 Answer by eduffy for Hidden features of Python eduffy 2008-09-21T22:01:53Z 2008-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#112306 7 Answer by Armin Ronacher for Hidden features of Python Armin Ronacher 2008-09-21T22:02:39Z 2008-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>&gt;&gt;&gt; p = Point() &gt;&gt;&gt; p.x = 3 &gt;&gt;&gt; p.y = 5 &gt;&gt;&gt; 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>&gt;&gt;&gt; p.__reduce_ex__(2)[2][1] {'y': 5, 'x': 3} </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/112316#112316 20 Answer by Armin Ronacher for Hidden features of Python Armin Ronacher 2008-09-21T22:07:44Z 2008-09-21T22:07:44Z <p>Python's advanced slicing operation has a barely known syntax element, the ellipsis:</p> <pre><code>&gt;&gt;&gt; class C(object): ... def __getitem__(self, item): ... return item ... &gt;&gt;&gt; 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#112325 4 Answer by Armin Ronacher for Hidden features of Python Armin Ronacher 2008-09-21T22:12:38Z 2008-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>&gt;&gt;&gt; class C(object): ... id = id ... &gt;&gt;&gt; C().id() Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; 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>&gt;&gt;&gt; from types import MethodType &gt;&gt;&gt; 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) ... &gt;&gt;&gt; class C(object): ... id = bind(id) ... &gt;&gt;&gt; C().id() 7414064 </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/113164#113164 35 Answer by Pasi Savolainen for Hidden features of Python Pasi Savolainen 2008-09-22T04:23:22Z 2008-09-22T04:23:22Z <p>Named formatting, % -formatting takes a hash (also applies %i/%s etc. validation).</p> <pre><code>&gt;&gt;&gt; print "The %(foo)s is %(bar)i." % {'foo': 'answer', 'bar':42} The answer is 42. &gt;&gt;&gt; foo, bar = 'question', 123 &gt;&gt;&gt; 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#113198 30 Answer by Jason Baker for Hidden features of Python Jason Baker 2008-09-22T04:34:39Z 2008-09-22T04:34:39Z <p><strong>Be careful with mutable default arguments</strong></p> <pre><code>&gt;&gt;&gt; def foo(x=[]): ... x.append(1) ... print x ... &gt;&gt;&gt; foo() [1] &gt;&gt;&gt; foo() [1, 1] &gt;&gt;&gt; foo() [1, 1, 1] </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/113319#113319 16 Answer by ianb for Hidden features of Python ianb 2008-09-22T05:33:15Z 2008-10-10T00:10:18Z <p>Tuple unpacking:</p> <pre><code>&gt;&gt;&gt; (a, (b, c), d) = [(1, 2), (3, 4), (5, 6)] &gt;&gt;&gt; a (1, 2) &gt;&gt;&gt; b 3 &gt;&gt;&gt; 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>&gt;&gt;&gt; def addpoints((x1, y1), (x2, y2)): ... return (x1+x2, y1+y2) &gt;&gt;&gt; addpoints((5, 0), (3, 5)) (8, 5) </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/113472#113472 1 Answer by paddy3118 for Hidden features of Python paddy3118 2008-09-22T06:32:00Z 2008-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>&gt;&gt;&gt; t1 = (0,1,2,3) &gt;&gt;&gt; t2 = (7,6,5,4) &gt;&gt;&gt; [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#113833 27 Answer by dgrant for Hidden features of Python dgrant 2008-09-22T08:43:11Z 2008-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#114157 21 Answer by Constantin for Hidden features of Python Constantin 2008-09-22T10:31:50Z 2008-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#114420 50 Answer by rlerallut for Hidden features of Python rlerallut 2008-09-22T11:55:40Z 2008-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#116280 15 Answer by lacker for Hidden features of Python lacker 2008-09-22T17:32:50Z 2008-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>&gt;&gt;&gt; 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>&gt;&gt;&gt; help("foo".upper) Help on built-in function upper: upper(...) S.upper() -&gt; string Return a copy of the string S converted to uppercase. </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/116391#116391 1 Answer by amix for Hidden features of Python amix 2008-09-22T17:54:25Z 2008-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#116440 9 Answer by amix for Hidden features of Python amix 2008-09-22T18:03:00Z 2008-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#116480 26 Answer by tghw for Hidden features of Python tghw 2008-09-22T18:08:54Z 2008-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#116580 11 Answer by Tzury Bar Yochay for Hidden features of Python Tzury Bar Yochay 2008-09-22T18:22:29Z 2008-09-22T18:22:29Z <ul> <li>The underscore</li> </ul> <pre> >>> (a for a in xrange(10000)) &lt;generator object at 0x81a8fcc> >>> b = 'blah' >>> _ &lt;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#116724 1 Answer by tghw for Hidden features of Python tghw 2008-09-22T18:48:03Z 2008-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#117116 69 Answer by Dave for Hidden features of Python Dave 2008-09-22T19:51:20Z 2008-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> &gt;&gt;&gt; a = ['a', 'b', 'c', 'd', 'e'] &gt;&gt;&gt; for index, item in enumerate(a): print index, item ... 0 a 1 b 2 c 3 d 4 e &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/118202#118202 9 Answer by Alexander Kojevnikov for Hidden features of Python Alexander Kojevnikov 2008-09-22T23:22:54Z 2009-06-27T23:06:20Z <p><strong>Ternary operator</strong></p> <pre><code>&gt;&gt;&gt; 'ham' if True else 'spam' 'ham' &gt;&gt;&gt; 'ham' if False else 'spam' 'spam' </code></pre> <p>This was added in 2.5, prior to that you could use:</p> <pre><code>&gt;&gt;&gt; True and 'ham' or 'spam' 'ham' &gt;&gt;&gt; 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>&gt;&gt;&gt; [] if True else 'spam' [] &gt;&gt;&gt; True and [] or 'spam' 'spam' </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/118312#118312 4 Answer by Dan for Hidden features of Python Dan 2008-09-22T23:56:40Z 2008-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>&gt;&gt;&gt; dict([ ('foo','bar'),('a',1),('b',2) ]) {'a': 1, 'b': 2, 'foo': 'bar'} &gt;&gt;&gt; names = ['Bob', 'Marie', 'Alice'] &gt;&gt;&gt; ages = [23, 27, 36] &gt;&gt;&gt; dict(zip(names, ages)) {'Alice': 36, 'Bob': 23, 'Marie': 27} </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/120074#120074 1 Answer by Rafał Dowgird for Hidden features of Python Rafał Dowgird 2008-09-23T09:41:41Z 2008-09-23T09:41:41Z <p>Tuple unpacking in for loops, list comprehensions and generator expressions:</p> <pre><code>&gt;&gt;&gt; l=[(1,2),(3,4)] &gt;&gt;&gt; [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#120247 6 Answer by csl for Hidden features of Python csl 2008-09-23T10:34:35Z 2008-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#122577 1 Answer by Constantin for Hidden features of Python Constantin 2008-09-23T17:48:20Z 2008-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#125185 1 Answer by Dan Udey for Hidden features of Python Dan Udey 2008-09-24T03:03:20Z 2008-09-24T03:03:20Z <p>The first-classness of everything ('everything is an object'), and the mayhem this can cause.</p> <pre><code>&gt;&gt;&gt; x = 5 &gt;&gt;&gt; y = 10 &gt;&gt;&gt; &gt;&gt;&gt; def sq(x): ... return x * x ... &gt;&gt;&gt; def plus(x): ... return x + x ... &gt;&gt;&gt; (sq,plus)[y&gt;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&gt;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#135024 6 Answer by Torsten Marek for Hidden features of Python Torsten Marek 2008-09-25T18:22:24Z 2009-06-27T23:10:19Z <p>Assigning and deleting slices:</p> <pre><code>&gt;&gt;&gt; a = range(10) &gt;&gt;&gt; a [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] &gt;&gt;&gt; a[:5] = [42] &gt;&gt;&gt; a [42, 5, 6, 7, 8, 9] &gt;&gt;&gt; a[:1] = range(5) &gt;&gt;&gt; a [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] &gt;&gt;&gt; del a[::2] &gt;&gt;&gt; a [1, 3, 5, 7, 9] &gt;&gt;&gt; a[::2] = a[::-2] &gt;&gt;&gt; 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#141900 7 Answer by Henry Precheur for Hidden features of Python Henry Precheur 2008-09-26T20:51:53Z 2008-09-26T20:51:53Z <p>dict's constructor accepts keyword arguments:</p> <pre><code>&gt;&gt;&gt; dict(foo=1, bar=2) {'foo': 1, 'bar': 2} </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/142639#142639 0 Answer by fivebells for Hidden features of Python fivebells 2008-09-27T00:42:45Z 2008-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#143636 151 Answer by BatchyX for Hidden features of Python BatchyX 2008-09-27T13:18:09Z 2009-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>&gt;&gt;&gt; re.compile("^\[font(?:=(?P&lt;size&gt;[-+][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>&gt;&gt;&gt; re.compile(""" ^ # start of a line \[font # the font tag (?:=(?P&lt;size&gt; # 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#143659 18 Answer by spiv for Hidden features of Python spiv 2008-09-27T13:37:41Z 2008-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>&gt;&gt;&gt; s = 'a' * 100 &gt;&gt;&gt; s.encode('zlib') 'x\x9cKL\xa4=\x00\x00zG%\xe5' </code></pre> <p>Similarly you can encode and decode base64:</p> <pre><code>&gt;&gt;&gt; 'Hello world'.encode('base64') 'SGVsbG8gd29ybGQ=\n' &gt;&gt;&gt; 'SGVsbG8gd29ybGQ=\n'.decode('base64') 'Hello world' </code></pre> <p>And, of course, you can rot13:</p> <pre><code>&gt;&gt;&gt; 'Secret message'.encode('rot13') 'Frperg zrffntr' </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/148211#148211 12 Answer by tadeusz for Hidden features of Python tadeusz 2008-09-29T10:36:12Z 2008-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#165138 4 Answer by Robert Rossney for Hidden features of Python Robert Rossney 2008-10-03T00:01:22Z 2008-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#168270 22 Answer by kaptin for Hidden features of Python kaptin 2008-10-03T18:38:15Z 2008-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") &gt;&gt;&gt; class myclass: ... def function(self): ... print "my function" ... &gt;&gt;&gt; class_instance = myclass() &gt;&gt;&gt; class_instance.&lt;TAB&gt; class_instance.__class__ class_instance.__module__ class_instance.__doc__ class_instance.function &gt;&gt;&gt; class_instance.f&lt;TAB&gt;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#171767 8 Answer by Constantin for Hidden features of Python Constantin 2008-10-05T09:51:09Z 2008-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#196225 6 Answer by pixelbeat for Hidden features of Python pixelbeat 2008-10-12T22:40:18Z 2008-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#196275 1 Answer by ironfroggy for Hidden features of Python ironfroggy 2008-10-12T23:19:49Z 2008-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#205889 5 Answer by mgb for Hidden features of Python mgb 2008-10-15T18:37:26Z 2008-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#208087 2 Answer by Gurch for Hidden features of Python Gurch 2008-10-16T10:52:13Z 2008-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#210921 2 Answer by zaphod for Hidden features of Python zaphod 2008-10-17T02:19:19Z 2008-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>&gt;&gt;&gt; obj = MyClass() &gt;&gt;&gt; obj.publicMethod() 123 &gt;&gt;&gt; obj.publicData = 'World' &gt;&gt;&gt; obj.publicMethod() World &gt;&gt;&gt; obj.privilegedMethod() hello World &gt;&gt;&gt; obj.privateMethod() Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; AttributeError: 'MyClass' object has no attribute 'privateMethod' &gt;&gt;&gt; obj.privateData Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; 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#215326 8 Answer by Kay Schluehr for Hidden features of Python Kay Schluehr 2008-10-18T17:44:47Z 2008-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) &gt;&gt;&gt; funcs[0]() 9 &gt;&gt;&gt; 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) &gt;&gt;&gt; funcs[0]() 0 &gt;&gt;&gt; funcs[7]() 7 </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/218177#218177 1 Answer by Tupteq for Hidden features of Python Tupteq 2008-10-20T11:59:39Z 2008-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>&gt;&gt;&gt; class C(object): ... def fun(self): ... print "C.a", self ... &gt;&gt;&gt; inst = C() &gt;&gt;&gt; inst.fun() # C.a method is executed C.a &lt;__main__.C object at 0x00AE74D0&gt; &gt;&gt;&gt; instancemethod = type(C.fun) &gt;&gt;&gt; &gt;&gt;&gt; def fun2(self): ... print "fun2", self ... &gt;&gt;&gt; inst.fun = instancemethod(fun2, inst, C) # Now we are replace C.a by fun2 &gt;&gt;&gt; inst.fun() # ... and fun2 is executed fun2 &lt;__main__.C object at 0x00AE74D0&gt; </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>&gt;&gt;&gt; def fun3(self): ... print "fun3", self ... &gt;&gt;&gt; import new &gt;&gt;&gt; inst.fun = new.instancemethod(fun3, inst, C) &gt;&gt;&gt; inst.fun() fun3 &lt;__main__.C object at 0x00AE74D0&gt; </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#221874 13 Answer by Jake for Hidden features of Python Jake 2008-10-21T13:26:46Z 2008-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#224747 16 Answer by monkut for Hidden features of Python monkut 2008-10-22T07:24:30Z 2009-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>&gt;&gt;&gt; x = [1,2,1,1,2,3,4] &gt;&gt;&gt; &gt;&gt;&gt; set(x) set([1, 2, 3, 4]) &gt;&gt;&gt; &gt;&gt;&gt; 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>&gt;&gt;&gt; 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>&gt;&gt;&gt; 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#235492 0 Answer by Karl Anderson for Hidden features of Python Karl Anderson 2008-10-24T22:36:56Z 2008-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#261833 6 Answer by utku_karatas for Hidden features of Python utku_karatas 2008-11-04T13:09:28Z 2008-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>&gt;&gt;&gt; import pprint &gt;&gt;&gt; stuff = sys.path[:] &gt;&gt;&gt; stuff.insert(0, stuff) &gt;&gt;&gt; pprint.pprint(stuff) [&lt;Recursion on list with id=869440&gt;, '', '/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#299781 11 Answer by jamesturk for Hidden features of Python jamesturk 2008-11-18T19:06:36Z 2008-11-18T19:06:36Z <pre><code>&gt;&gt;&gt; from functools import partial &gt;&gt;&gt; bound_func = partial(range, 0, 10) &gt;&gt;&gt; bound_func() [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] &gt;&gt;&gt; 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#322868 0 Answer by M. Utku ALTINKAYA for Hidden features of Python M. Utku ALTINKAYA 2008-11-27T03:24:04Z 2008-11-27T03:24:04Z <pre><code>is_ok() and "Yes" or "No" </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/326615#326615 0 Answer by Steen for Hidden features of Python Steen 2008-11-28T20:34:37Z 2008-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) &lt;ipython console&gt; 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#326893 5 Answer by FA for Hidden features of Python FA 2008-11-28T23:27:59Z 2008-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#373949 14 Answer by Abgan for Hidden features of Python Abgan 2008-12-17T08:09:01Z 2009-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>&gt;&gt;&gt; str(round(1234.5678, -2)) '1200.0' &gt;&gt;&gt; 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#393927 12 Answer by Alabaster Codify for Hidden features of Python Alabaster Codify 2008-12-26T16:05:39Z 2008-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. &gt;&gt;&gt; shared_var = "Set in main console" &gt;&gt;&gt; import code &gt;&gt;&gt; ic = code.InteractiveConsole({ 'shared_var': shared_var }) &gt;&gt;&gt; try: ... ic.interact("My custom console banner!") ... except SystemExit, e: ... print "Got SystemExit!" ... My custom console banner! &gt;&gt;&gt; shared_var 'Set in main console' &gt;&gt;&gt; shared_var = "Set in sub-console" &gt;&gt;&gt; sys.exit() Got SystemExit! &gt;&gt;&gt; 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#405085 13 Answer by Kiv for Hidden features of Python Kiv 2009-01-01T16:05:42Z 2009-01-01T16:05:42Z <p><strong>Operator overloading for the <code>set</code> builtin:</strong></p> <pre><code>&gt;&gt;&gt; a = set([1,2,3,4]) &gt;&gt;&gt; b = set([3,4,5,6]) &gt;&gt;&gt; a | b # Union {1, 2, 3, 4, 5, 6} &gt;&gt;&gt; a &amp; b # Intersection {3, 4} &gt;&gt;&gt; a &lt; b # Subset False &gt;&gt;&gt; a - b # Difference {1, 2} &gt;&gt;&gt; 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#405094 2 Answer by Benjamin Peterson for Hidden features of Python Benjamin Peterson 2009-01-01T16:14:19Z 2009-01-01T16:14:19Z <p>You can override the mro of a class with a metaclass</p> <pre><code>&gt;&gt;&gt; class A(object): ... def a_method(self): ... print("A") ... &gt;&gt;&gt; class B(object): ... def b_method(self): ... print("B") ... &gt;&gt;&gt; class MROMagicMeta(type): ... def mro(cls): ... return (cls, B, object) ... &gt;&gt;&gt; class C(A, metaclass=MROMagicMeta): ... def c_method(self): ... print("C") ... &gt;&gt;&gt; cls = C() &gt;&gt;&gt; cls.c_method() C &gt;&gt;&gt; cls.a_method() Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; AttributeError: 'C' object has no attribute 'a_method' &gt;&gt;&gt; cls.b_method() B &gt;&gt;&gt; type(cls).__bases__ (&lt;class '__main__.A'&gt;,) &gt;&gt;&gt; type(cls).__mro__ (&lt;class '__main__.C'&gt;, &lt;class '__main__.B'&gt;, &lt;class 'object'&gt;) </code></pre> <p>It's probably hidden for a good reason. :)</p> http://stackoverflow.com/questions/101268/hidden-features-of-python/407695#407695 3 Answer by Gorgapor for Hidden features of Python Gorgapor 2009-01-02T18:48:52Z 2009-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#407754 1 Answer by sprintf for Hidden features of Python sprintf 2009-01-02T19:10:54Z 2009-01-02T19:10:54Z <p><strong>The Zen of Python</strong></p> <pre><code>&gt;&gt;&gt; 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#435187 2 Answer by Tom Viner for Hidden features of Python Tom Viner 2009-01-12T11:38:56Z 2009-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#585473 1 Answer by Mykola Kharechko for Hidden features of Python Mykola Kharechko 2009-02-25T10:29:19Z 2009-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#603391 2 Answer by becomingGuru for Hidden features of Python becomingGuru 2009-03-02T18:16:53Z 2009-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#603408 1 Answer by becomingGuru for Hidden features of Python becomingGuru 2009-03-02T18:23:19Z 2009-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>&gt;&gt;&gt; def foo(): ... print "foo" ... return 0 ... &gt;&gt;&gt; def bar(): ... print "bar" ... return 1 ... &gt;&gt;&gt; 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>&gt;&gt;&gt; (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>&gt;&gt;&gt; foo() if True or bar() foo 0 </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/632582#632582 4 Answer by david for Hidden features of Python david 2009-03-10T22:47:20Z 2009-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#652687 1 Answer by J.F. Sebastian for Hidden features of Python J.F. Sebastian 2009-03-17T00:56:53Z 2009-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>&gt;&gt;&gt; import __hello__ Hello world... &gt;&gt;&gt; type(__hello__) &lt;type 'module'&gt; &gt;&gt;&gt; from __phello__ import spam Hello world... Hello world... &gt;&gt;&gt; type(spam) &lt;type 'module'&gt; &gt;&gt;&gt; help(spam) Help on module __phello__.spam in __phello__: NAME __phello__.spam FILE c:\python26\&lt;frozen&gt; </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/781998#781998 0 Answer by Mike for Hidden features of Python Mike 2009-04-23T14:26:17Z 2009-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#804238 9 Answer by Scott Kirkwood for Hidden features of Python Scott Kirkwood 2009-04-29T20:56:59Z 2009-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#938602 5 Answer by Tom for Hidden features of Python Tom 2009-06-02T09:12:21Z 2009-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 &lt;html&gt; &lt;head&gt; ... &lt;/head&gt;""" </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 &gt;&gt; \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#967971 4 Answer by Ken Arnold for Hidden features of Python Ken Arnold 2009-06-09T03:14:25Z 2009-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#967998 2 Answer by Ken Arnold for Hidden features of Python Ken Arnold 2009-06-09T03:27:08Z 2009-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>&gt;&gt;&gt; from a_package import a_module &gt;&gt;&gt; cls = a_module.SomeClass &gt;&gt;&gt; obj = cls() &gt;&gt;&gt; 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>&gt;&gt;&gt; reload(a_module) &gt;&gt;&gt; a_module.SomeClass is cls False # Because it just got freshly created by reload. &gt;&gt;&gt; obj.method() (old method output) </code></pre> <p>Here's one way to update it (but consider it running with scissors):</p> <pre><code>&gt;&gt;&gt; obj.__class__ is cls True # it's the old class object &gt;&gt;&gt; obj.__class__ = a_module.SomeClass # pick up the new class &gt;&gt;&gt; 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#1013448 6 Answer by Markus for Hidden features of Python Markus 2009-06-18T15:40:54Z 2009-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#1013470 1 Answer by Markus for Hidden features of Python Markus 2009-06-18T15:45:23Z 2009-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 &gt;&gt;&gt; @countCalls ... def doNothing(): ... pass &gt;&gt;&gt; doNothing() &gt;&gt;&gt; doNothing() &gt;&gt;&gt; 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#1013517 2 Answer by Markus for Hidden features of Python Markus 2009-06-18T15:54:00Z 2009-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: &gt;&gt;&gt; @threadify ... def longOperation(result): ... time.sleep(3) ... return result &gt;&gt;&gt; A= longOperation("A has finished") &gt;&gt;&gt; B= longOperation("B has finished") A doesn't have a result yet: &gt;&gt;&gt; print A.result None until we wait for it: &gt;&gt;&gt; print A.awaitResult() A has finished we could also wait manually - half a second more should be enough for B: &gt;&gt;&gt; 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#1024693 11 Answer by André for Hidden features of Python André 2009-06-21T20:32:22Z 2009-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#1088213 0 Answer by sproaty for Hidden features of Python sproaty 2009-07-06T17:28:20Z 2009-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#1338523 0 Answer by Greg for Hidden features of Python Greg 2009-08-27T02:14:14Z 2009-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>&gt;&gt;&gt; def addInts(x,y): ... return x + y &gt;&gt;&gt; addInts.params = ['integer','integer'] &gt;&gt;&gt; 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#1399564 0 Answer by Busted Keaton for Hidden features of Python Busted Keaton 2009-09-09T13:01:23Z 2009-09-09T13:01:23Z <p>The getattr built-in function :</p> <pre><code>&gt;&gt;&gt; class C(): def getMontys(self): self.montys = ['Cleese','Palin','Idle','Gilliam','Jones','Chapman'] return self.montys &gt;&gt;&gt; c = C() &gt;&gt;&gt; getattr(c,'getMontys')() ['Cleese', 'Palin', 'Idle', 'Gilliam', 'Jones', 'Chapman'] &gt;&gt;&gt; </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#1592819 0 Answer by Cixate for Hidden features of Python Cixate 2009-10-20T06:35:25Z 2009-10-20T06:35:25Z <p>Simple way to test if a key is in a dict:</p> <pre><code>&gt;&gt;&gt; 'key' in { 'key' : 1 } True &gt;&gt;&gt; d = dict(key=1, key2=2) &gt;&gt;&gt; if 'key' in d: ... print 'Yup' ... Yup </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/1602751#1602751 0 Answer by pst for Hidden features of Python pst 2009-10-21T18:39:29Z 2009-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) # =&gt; True print o.theValue() # =&gt; fred </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/1602786#1602786 0 Answer by pst for Hidden features of Python pst 2009-10-21T18:44:16Z 2009-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#1631763 1 Answer by Denis Otkidach for Hidden features of Python Denis Otkidach 2009-10-27T15:49:21Z 2009-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>&gt;&gt;&gt; B().prop {'a': 1, 'b': 2} </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/1667256#1667256 0 Answer by Amol for Hidden features of Python Amol 2009-11-03T13:10:07Z 2009-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#1687543 0 Answer by kaizer.se for Hidden features of Python kaizer.se 2009-11-06T13:18:00Z 2009-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>&gt;&gt;&gt; s = u'10585' &gt;&gt;&gt; s u'\uff11\uff10\uff15\uff18\uff15' &gt;&gt;&gt; print s 10585 &gt;&gt;&gt; int(s) 10585 &gt;&gt;&gt; float(s) 10585.0 </code></pre>