Skip to content

Instantly share code, notes, and snippets.

@ilyanep
Created October 29, 2010 06:04
Show Gist options
  • Save ilyanep/653004 to your computer and use it in GitHub Desktop.
Save ilyanep/653004 to your computer and use it in GitHub Desktop.
Python is a weird language and I'm sad
>>> len = 3
>>> len([3])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'int' object is not callable
>>> del(len)
>>> len([3])
1
>>> False = 3
>>> if False:
... print "hi"
...
hi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment