Name: Anonymous 2007-02-02 12:05
ITT we list all the bad things about python.
I know it has good points as well but thats not for this thread. thanks.
I know it has good points as well but thats not for this thread. thanks.
>>> def _(a=[]):
... a += [len(a),]
... return a
...
>>> ((_()))
[0]
>>> ((_()))
[0, 1]
>>> ((_()))
[0, 1, 2]