vote up 259 vote down star
442

What are the lesser-known but useful features of the Python programming language.

  • Try to limit answers to Python core
  • One feature per answer
  • Give an example and short description of the feature, not just a link to documentation
  • Label the feature using bold title as the first line
flag
8  
Okay, this is an awesome topic – Teifion Sep 19 '08 at 11:56
show 4 more comments

117 Answers

1 2 3 4 next
vote up 184 vote down

Chaining comparison operators:

>>> x = 5
>>> 1 < x < 10
True
>>> 10 < x < 20 
False
>>> x < 10 < x*10 < 100
True
>>> 10 > x <= 9
True
>>> 5 == x > 4
True

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 1 < x and x < 10, and x < 10 and 10 < x * 10 and x*10 < 100, but with less typing and each term is only evaluated once.

link|flag
13  
That's very helpful. It should be standard for all languages. Sadly, it isn't. – stalepretzel Oct 17 '08 at 2:23
5  
This applies to other comparison operators as well, which is why people are sometimes surprised why code like (5 in [5] is True) is False (but it's unpythonic to explicitly test against booleans like that to begin with). – Miles Mar 2 at 18:35
1  
They should really really be in all languages, I totally agree. – Andrew Szeto Jul 9 at 20:03
show 3 more comments
vote up 158 vote down

Get the python regex parse tree to debug your regex

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.

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

>>> 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

Once you understand the syntax, you can spot your errors. There we can see that i forgot to escape the [] in [/font].

Of course you can combine it with whatever flags you want, like commented regexes :

>>> 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)
link|flag
28  
Instead of 128 you can also use re.DEBUG. Be aware that the comment in the source says this flag is experimental and you shouldn't rely on it. – Andreas Thomas Dec 28 '08 at 14:24
9  
If you can use re.DEBUG, then you should. It may be experimental, but it's still the symbolic name, and the actual 128 value is just as experimental, but less readable, and more subject to change. – Lee B Jun 18 at 9:54
show 1 more comment
vote up 117 vote down

iter() can take a callable argument

For instance:

def seek_next_line(f):
    for c in iter(lambda: f.read(1),'\n'):
        pass

The iter(callable, until_value) calls repetitively the callable and yields its result until the callable returns until_value.

link|flag
10  
You should also add the explanation: iter(callable, sentinel) -> iterator; the callable is called until it returns the sentinel. – Cristian Ciupitu Oct 5 '08 at 15:23
show 1 more comment
vote up 113 vote down

Creating generators objects

If you write

x=(n for n in foo if bar(n))

you can get out the generator and assign it to x. Now it means you can do

for n in x:

The advantage of this is that you don't need intermediate storage, which you would need if you did

x = [n for n in foo if bar(n)]

In some cases this can lead to significant speed up.

You can append many if statements to the end of the generator, basically replicating nested for loops:

>>> n = ((a,b) for a in range(0,2) for b in range(4,6))
>>> for i in n:
...   print i 

(0, 4)
(0, 5)
(1, 4)
(1, 5)
link|flag
10  
Of particular note is the memory overhead savings. Values are computed on-demand, so you never have the entire result of the list comprehension in memory. This is particularly desirable if you later iterate over only part of the list comprehension. – saffsd May 17 at 2:41
show 1 more comment
vote up 92 vote down

Decorators

Decorators 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 (@).

Example shows a print_args decorator that prints function's arguments before calling it:

>>> 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
link|flag
10  
When defining decorators, I'd recommend decorating the decorator with @decorator. It creates a decorator that preserves a functions signature when doing introspection on it. More info here: phyast.pitt.edu/~micheles/python/… – sirwart Sep 22 '08 at 15:53
12  
How is this a hidden feature? – vetler Oct 2 '08 at 13:52
8  
Well, it's not present in most simple Python tutorials, and I stumbled upon it a long time after I started using Python. That is what I would call a hidden feature, just about the same as other top posts here. – DzinX Oct 3 '08 at 6:51
6  
vetler, the questions asks for "lesser-known but useful features of the Python programming language." How do you measure 'lesser-known but useful features'? I mean how are any of these responses hidden features? – Johnd May 23 at 21:14
vote up 90 vote down

Sending values into generator functions. For example having this function:

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

You can:

>>> 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
link|flag
3  
You should test f against None, otherwise object considered false can't be used (for example 0). – Sylvain Defresne Sep 19 '08 at 13:29
3  
if f -> if f is not None – J.F. Sebastian Nov 23 '08 at 10:39
show 3 more comments
vote up 88 vote down

From 2.5 onwards dicts have a special method __missing__ that is invoked for missing items:

>>> 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]}

There is also a dict subclass in collections called defaultdict that does pretty much the same but calls a function without arguments for not existing items:

>>> from collections import defaultdict
>>> m = defaultdict(list)
>>> m["foo"].append(1)
>>> m["foo"].append(2)
>>> dict(m)
{'foo': [1, 2]}

I recommend converting such dicts to regular dicts before passing them to functions that don't expect such subclasses. A lot of code uses d[a_key] and catches KeyErrors to check if an item exists which would add a new item to the dict.

link|flag
show 2 more comments
vote up 86 vote down

The step argument in slice operators. For example:

a = [1,2,3,4,5]
>>> a[::2]  # iterate over the whole list in 2-increments
[1,3,5]

The special case x[::-1] is a useful idiom for 'x reversed'.

>>> a[::-1]
[5,4,3,2,1]
link|flag
4  
much clearer, in my opinion, is the reversed() function. >>> list(reversed(range(4))) [3, 2, 1, 0] – Gorgapor Jan 2 '09 at 18:35
1  
then how to write "this i a string"[::-1] in a better way? reversed doesnt seem to help – Berry Tsakala Jun 21 at 20:56
1  
"".join(reversed("this i a string")) – erikprice Jun 23 at 17:17
3  
The problem with reversed() is that it returns an iterator, so if you want to preserve the type of the reversed sequence (tuple, string, list, unicode, user types...), you need an additional step to convert it back. – Rafał Dowgird Jun 24 at 14:08
vote up 84 vote down

Readable regular expressions

In Python you can split a regular expression over multiple lines, name your matches and insert comments.

Example verbose syntax (from Dive into Python):

>>> 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)

Example naming matches (from Regular Expression HOWTO)

>>> p = re.compile(r'(?P<word>\b\w+\b)')
>>> m = p.search( '(((( Lots of punctuation )))' )
>>> m.group('word')
'Lots'

You can also verbosely write a regex without using re.VERBOSE thanks to string literal concatenation.

>>> 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})$"
link|flag
3  
Yes, but because you can't do it in grep or in most editors, a lot of people don't know it's there. The fact that other languages have an equivalent feature doesn't make it not a useful and little known feature of python – Mark Baker Oct 17 '08 at 9:08
1  
In a large project with lots of optimized regular expressions (read: optimized for machine but not human beings), I bit the bullet and converted all of them to verbose syntax. Now, introducing new developers to projects is much easier. From now on we enforce verbose REs on every project. – Berk D. Demir Mar 22 at 13:18
2  
@Ken: a regex may not always be directly in the source, it could be read from settings or a config file. Allowing comments or just additional whitespace (for readability) can be a great help. – Roger Pate Jun 27 at 22:30
show 2 more comments
vote up 75 vote down

enumerate

Wrap an iterable with enumerate and it will yield the item along with it's index.

For example:


>>> 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
>>>
link|flag
11  
I'm surprised this isn't covered routinely in tutorials talking about python lists. – Draemon Nov 27 '08 at 4:06
1  
And all this time I was coding this way: for i in range(len(a)): ... and then using a[i] to get the current item. – fmartin Jun 22 at 16:35
show 5 more comments
vote up 61 vote down

Doctest: documentation and unit-testing at the same time.

Example extracted fom python documentation:

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()
link|flag
13  
Doctests are overrated and pollute the documentation. How often do you test a standalone function without any setUp() ? – a paid nerd May 11 at 4:34
2  
who says you can't have setup in a doctest? write a function that generates the context and returns locals() then in your doctest do locals().update(setUp()) =D – Jim Robert Dec 2 at 17:27
show 1 more comment
vote up 59 vote down

One line Variable value swapping

>>> a = 10
>>> b = 5
>>> a, b = b, a

>>> print a
5
>>> print b
10

a will have the value of b and so on.

This is a side effect of python packing and unpacking feature.

link|flag
vote up 59 vote down

Futures and the "with" Statement

There's a special module in Python called __future__. 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 with statement, which is currently present in __future__ in version 2.5, but are part of the language in the 2.6 and 3.0 versions.

The reason it is in __future__ is because it makes both with and as keywords, which could break existing code.

I have used the "with" statement in 2.5 a lot because I think it's a very useful construct, here is a quick demo:

from __future__ import with_statement

with open('foo.txt', 'w') as f:
    f.write('hello!')

What's happening here behind the scenes, is that the "with" statement calls the special __enter__ and __exit__ methods on the file object. Exception details are also passed to __exit__ if any exception was raised from the with statement body, allowing for exception handling to happen there.

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 with statement'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.

Other common use cases for this include locking with threads and database transactions.

For more information on how to use this and how to implement your own with statement compatible objects read PEP 343.

link|flag
show 3 more comments
vote up 55 vote down

If you don't like using whitespace to denote scopes, you can use the C-style {} by issuing:

from __future__ import braces
link|flag
13  
That's evil. :) – Jason Baker Sep 22 '08 at 4:32
3  
>>> from future import braces File "<stdin>", line 1 SyntaxError: not a chance :P – Benjamin W. Smith Sep 22 '08 at 19:55
6  
that's blasphemy! – Berk D. Demir Mar 22 at 13:24
56  
I think that we may have a syntactical mistake here, shouldn't that be "from past import braces"? – Bill K Apr 29 at 21:26
7  
from cruft import braces – Phillip Oldham Jun 18 at 7:16
show 12 more comments
vote up 55 vote down

The for...else idiom (see http://docs.python.org/ref/for.html )

for i in foo:
    if i == 0:
        break
else:
    print("i was never 0")

The "else" block will be normally executed at the end of the for loop, unless the break is called.

The above code could be emulated as follows:

found = False
for i in foo:
    if i == 0:
        found = True
        break
if not found: 
    print("i was never 0")
link|flag
32  
I think the for/else syntax is awkward. It "feels" as if the else clause should be executed if the body of the loop is never executed. – codeape Oct 10 '08 at 6:44
7  
ah. Never saw that one! But I must say it is a bit of a misnomer. Who would expect the else block to execute only if break never does? I agree with codeape: It looks like else is entered for empty foos. – Daren Thomas Oct 13 '08 at 17:31
2  
Anyone remember the FOR var … NEXT var … END FOR var of Sinclair QL's SuperBasic? Everything between NEXT and END FOR would execute at the end of the loop, unless an EXIT FOR was issued. That syntax was cleaner :) – ΤΖΩΤΖΙΟΥ Jan 15 '09 at 12:28
5  
seems like the keyword should be finally, not else – Jim Robert Jun 25 at 16:31
3  
Except finally is already used in a way where that suite is always executed. – Roger Pate Jun 27 at 22:34
show 4 more comments
vote up 46 vote down

Descriptors

They're the magic behind a whole bunch of core Python features.

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 __get__, __set__, or __del__ methods.

Here's how you'd implement your own (read-only) version of property using descriptors:

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)

and you'd use it just like the built-in property():

class MyClass(object):
    @Property
    def foo(self):
        return "Foo!"

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.

Raymond Hettinger has an excellent tutorial that does a much better job of describing them than I do.

link|flag
vote up 41 vote down

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).

It's great for things like adding up numbers:

sum[value] = sum.get(value, 0) + 1

link|flag
9  
also, checkout the setdefault method. – Daren Thomas Oct 13 '08 at 17:29
5  
also, checkout collections.defaultdict class. – J.F. Sebastian Nov 23 '08 at 10:35
vote up 38 vote down

Named formatting, % -formatting takes a hash (also applies %i/%s etc. validation).

>>> 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.

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..

link|flag
9  
Will be phased out and eventually replaced with string's format() method. – Constantin Oct 5 '08 at 9:41
1  
Named formatting is very useful for translators as they tend to just see the format string without the variable names for context – pixelbeat Oct 12 '08 at 22:45
1  
Appears to work in python 3.0.1 (needed to add parenttheses around print call). – Pasi Savolainen Jul 1 at 11:32
1  
a hash, huh? I see where you came from. – shylent Nov 14 at 13:45
show 1 more comment
vote up 38 vote down

Creating new types at runtime

>>> NewType = type("NewType", (object,), {"x": "hello"})
>>> n = NewType()
>>> n.x
"hello"

which is exactly the same as

>>> class NewType(object):
>>>     x = "hello"
>>> n = NewType()
>>> n.x
"hello"

Probably not the most useful thing, but nice to know.

Edit: Fixed name of new type, should be NewType to be the exact same thing as with class statement.

link|flag
1  
This has a lot of potential for usefulness, e.g., JIT ORMs – Mark Cidade Sep 22 '08 at 18:44
4  
I use it to generate HTML-Form classes based on a dynamic input. Very nice! – pi Mar 18 at 16:00
show 1 more comment
vote up 35 vote down

Be careful with mutable default arguments

>>> def foo(x=[]):
...     x.append(1)
...     print x
... 
>>> foo()
[1]
>>> foo()
[1, 1]
>>> foo()
[1, 1, 1]
link|flag
3  
That's definitely one of the more nasty hidden features. I've run into it from time to time. – Torsten Marek Sep 23 '08 at 17:42
2  
I found this a lot easier to understand when I learned that the default arguments live in a tuple that's an attribute of the function, e.g. foo.func_defaults. Which, being a tuple, is immutable. – Robert Rossney Nov 5 at 20:43
show 1 more comment
vote up 35 vote down

The simple fact that you can unpack a list or a dictionary as function arguments using * and **.

For example :

def drawPoint(x,y):
    # do some magic

point1 = (3, 4)
point2 = {'y':3, 'x':2}

drawPoint(*point1)
drawPoint(**point2)

Very useful shortcut since list, tuple and dicts are overused containers (for the best).

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

Re-raising exceptions:

try:
    some_operation()
except SomeError, e:
    if is_fatal(e):
        raise
    handle_nonfatal(e)

The 'raise' statement with no arguments inside an error handler tells Python to re-raise the exception with the original traceback intact, allowing you to say "oh, sorry, sorry, I didn't mean to catch that, sorry, sorry."

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.

link|flag
4  
Maybe more magical, exc_info = sys.exc_info(); raise exc_info[0], exc_info[1], exc_info[2] is equivalent to this, but you can change those values around (e.g., change the exception type or message) – ianb May 5 at 20:27
show 3 more comments
vote up 32 vote down

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:

"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.)"

link|flag
vote up 32 vote down

Main messages :)

import this
# btw look at this module's source :)


De-cyphered:

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!

link|flag
11  
the way the source is written goes against the zen! – hasen j Jan 1 '09 at 5:39
2  
svn.python.org/view/python/… – erikprice Jun 24 at 19:41
show 4 more comments
vote up 30 vote down

Conditional Assignment

x = 3 if (y == 1) else 2

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:

x = 3 if (y == 1) else 2 if (y == -1) else 1

Though at a certain point, it goes a little too far.

link|flag
4  
The assignment is not the special part. You could just as easily do something like: return 3 if (y == 1) else 2. – Brian Nov 9 '08 at 5:39
4  
That alternate way is the first time I've seen obfuscated Python. – Craig McQueen Jun 9 at 4:18
3  
Kylebrooks: It doesn't in that case, boolean operators short circuit. It will only evaluate 2 if bool(3) == False. – RoadieRich Jul 12 at 0:23
2  
this backwards-style coding confusing me. something like x = ((y == 1) ? 3 : 2) makes more sense to me – Mark Oct 20 at 7:12
show 3 more comments
vote up 28 vote down

Nested list comprehensions and generator expressions:

[(i,j) for i in range(3) for j in range(i) ]    
((i,j) for i in range(4) for j in range(i) )

These can replace huge chunks of nested-loop code.

link|flag
show 3 more comments
vote up 24 vote down

Interactive Interpreter Tab Completion

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()

You will also have to set a PYTHONSTARTUP environment variable.

link|flag
1  
This is a very useful feature. So much so I've a simple script to enable it (plus a couple of other introspection enhancements): pixelbeat.org/scripts/inpy – pixelbeat Oct 12 '08 at 22:49
6  
IPython gives you this plus tons of other neat stuff – akaihola Jan 10 '09 at 3:47
1  
@akaihola read the main qn. – Sriram Nov 3 at 17:43
vote up 24 vote down

property

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)

In Python 2.6 and 3.0:

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

Python's advanced slicing operation has a barely known syntax element, the ellipsis:

>>> class C(object):
...  def __getitem__(self, item):
...   return item
... 
>>> C()[1:2, ..., 3]
(slice(1, 2, None), Ellipsis, 3)

Unfortunately it's barely useful as the ellipsis is only supported if tuples are involved.

link|flag
4  
see stackoverflow.com/questions/118370/… for more info – molasses Sep 23 '08 at 0:33
vote up 22 vote down

Exception else clause:

try:
  put_4000000000_volts_through_it(parrot)
except Voom:
  print "'E's pining!"
else:
  print "This parrot is no more!"
finally:
  end_sketch()

See http://docs.python.org/tut/node10.html

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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