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
Python Syntax Diagram

A railroad diagram showing the grammar of the Python language

EuroPython 2026

@ThePSF @encukou @europython

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]

@dalke I'm hoping the keen-eyed will learn a *new* favourite strange part of the syntax :)