RosettaCodeData/Task/Unicode-variable-names/Python/unicode-variable-names.py

6 lines
46 B
Python

>>> Δx = 1
>>> Δx += 1
>>> print(Δx)
2
>>>