[BangPypers] Python "Wat"s

Anand Chitipothu anandology at gmail.com
Tue Sep 10 06:51:02 CEST 2013


On Tue, Sep 10, 2013 at 10:14 AM, Shabda Raaj <shabda at agiliq.com> wrote:

> This is a popular talk on quircks of ruby/js
>
> https://www.destroyallsoftware.com/talks/wat
>
> What are the quircks/unexpected behavior you find in Python? (Aka Python
> "wats").
>

x = 10

class Foo:
    print x
    x = 0
    print x
    del x
    print x

# wat?


More information about the BangPypers mailing list