21,306 reputation
32044
bio website katriel.co.uk
location Cambridge, United Kingdom
age 21
visits member for 1 year, 10 months
seen 7 hours ago
stats profile views 1,338
>>> class Oops(object):
...     def __init__(self):
...             Oops.__call__ = self
... 
>>> x = Oops()
>>> x()

>>> Z = lambda f: (lambda x: f(lambda *args: x(x)(*args)))(lambda x: f(lambda *args: x(x)(*args)))
>>> fact = Z(lambda f: lambda x: 1 if x == 0 else x * f(x-1))
>>> fact(5)
... 120

>>> 0 < 0 == 0
... False

def foo():
    return
    yield

raise TypeError() from ValueError()

def spam(*, ham):
    pass

Move code from try to else if you don't want to catch any errors that it produces.

try:
    do_not_do_this_at_home()
except ToldYouSo:
    die()
else:
    whaddyaknow()
finally:
    cleanup()

Yowza!

>>> class attrdict(dict):
...   def __init__(self, *args, **kwargs):
...     dict.__init__(self, *args, **kwargs)
...     self.__dict__ = self

Easy dynamic programming in Python 3.2:

@functools.lru_cache(maxsize=None)
def fib(n):
    if n < 2: return n
    return fib(n-1) + fib(n-2)

2k
× 671
59
× 9
123
× 33
47
× 21
94
× 21
42
× 16
76
× 12
39
× 18
64
× 31
35
× 15
Stack Overflow Stack Overflow 21,306 rep 32044
Super User Super User 146 rep 13
Cooking Cooking 108 rep 3
Server Fault Server Fault 101 rep 11
Mathematics Mathematics 101 rep 2
all time   by type   month  
765 up 639 question 3
86 down 212 answer