Did you recently switch from PHP or JavaScript to Python, and are missing the fun of being bitten by your programming language?
The collection of surprising Python snippets and lesser-known features is your ultimate guide for provoking Python to bite you in the arse.
Like this:
Like Loading...
Related Posts
Author: Omer Zak
I am deaf since birth. I played with big computers which eat punched cards and spew out printouts since age 12. Ever since they became available, I work and play with desktop size computers which eat keyboard keypresses and spew out display pixels.
Among other things, I developed software which helped the deaf in Israel use the telephone network, by means of home computers equipped with modems. Several years later, I developed Hebrew localizations for some cellular phones, which helped the deaf in Israel utilize the cellular phone networks.
I am interested in entrepreneurship, Science Fiction and making the world more accessible to people with disabilities.
View all posts by Omer Zak
>>> a = “wtf!”
>>> b = “wtf!”
>>> a is b
False
>>> a, b = “wtf!”, “wtf!”
>>> a is b
True
wtf!!!!