I want to use Unicode variable names for writing some math code in Python.
I tried the following
# -*- coding: utf-8 -*-
α  = 1
β = 3
print α + β 
But I get the error
[~/Desktop]$ python fun.py
  File "fun.py", line 2
    α  = 1
    ^
SyntaxError: invalid syntax
How can I fix this?
 
    