For me it's the unexpected behavior of scopes in some situations, for example:
>>> functions = [lambda x:x*multiplier for multiplier in range(10)]
>>> [f(10) for f in functions]
[90, 90, 90, 90, 90, 90, 90, 90, 90, 90]
This is not what I would expect at first sight. One possible correct version is as follows:
>>> def makemul(multiplier):
>>> return lambda x:x*multiplier
>>> functions = [makemul(multiplier) for multiplier in range(10)]
>>> [f(10) for f in functions]
[0, 10, 20, 30, 40, 50, 60, 70, 80, 90]
Here's another:
>>> functions = [(lambda m: lambda x:x*m)(multiplier) for multiplier in range(10)]
>>> [f(10) for f in functions]
[0, 10, 20, 30, 40, 50, 60, 70, 80, 90]
Another fact that may come as a surprise is that default values for function parameters are assigned during the evaluation of the def statement, not during function calls. Here's an example (from "Python in a nutshell"):
def f(x, y=[]):
y.append(x)
return y
print f(23) # prints [23]
print f(42) # prints [23, 42] (!)
If you want to bind y to an empty list at each function call you must use a workaround:
def f(x, y=None):
if y is None: y=[]
y.append(x)
return y
print f(23) # prints [23]
print f(42) # prints [42]
if xis equivalent toif x != False. I'm not a Python guru, but that's been my impression of its conditionals as well. Am I missing something? – Chuck Jan 17 '09 at 8:34