Ever wonder how Python's grammar actually fits together? PSF CPython Developer in Residence @encukou is presenting a full railroad diagram of #Python's entire grammar in the poster session at @europython 2026 on July 16- make sure to check it out! #EP2026 https://ep2026.europython.eu/session/python-syntax-diagram
The keen-eyed might spot what I think is the strangest part of Python syntax - del!
>>> a=b=c=d=1
>>> [globals().get(varname) for varname in "abcd"]
[1, 1, 1, 1]
>>> del ((((a), ((((c,d)))))))
>>> [globals().get(varname) for varname in "abcd"]
[None, 1, None, None]
