About Unicode Variable Names

You can use Unicode characters for variable names (except when they are not letters):

>>> def ƒ(n):
...    return n**2

>>> α = 3
>>> ƒ(α)
9

Programming Python 3