Using 'list' as a name is not great idea and should be avoided (unless one likes nasty surprises down the road):
>>> spam = list() >>> spam [] >>> list('abc') ['a', 'b', 'c'] >>> list = [] >>> spam = list() Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'list' object is not callable >>> list('abc') Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'list' object is not callable
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.