Ah mais #Python 3.10 ajoute une déclaration "match" qui permet d'éviter les longues liste de "if...elif...elif..."
À la place on met:
match la_variable:
\t case "a":
...
\t case "b":
...
\t case _:
Ici un "catch-all"
https://docs.python.org/3/tutorial/controlflow.html#match-statements