News

The pattern-matching syntax introduced in Python 3.10 allows for powerful new programming techniques for decision-making in apps.
The CPython interpreter in Python 3.14 can use a feature in C code that uses tail calls between functions. When compiled with a C compiler that supports these features, CPython runs slightly faster.
Rejoice! Gone are the long chains of if…else statements, because switch statements will soon be here — sort of. What the Python gods are actually giving us are match statements. match s… ...