I have been trying to figure out how to use non-ascii unicode characters as Python 3 variables but I'm not sure which ones work and which ones don't. Why does the σ work but ∆ does not? Is it possible to use ∆ as a character or is it impossible at the moment?
# Version
sys.version
'3.6.4 |Anaconda, Inc.| (default, Jan 16 2018, 12:04:33) \n[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)]'
σ = 10
print(σ )
# 10
∆ = 20
# File "<ipython-input-24-b5e030117292>", line 1
# ∆ = 20
# ^
# SyntaxError: invalid character in identifier