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

6 lines
46 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
>>> Δx = 1
>>> Δx += 1
>>> print(Δx)
2
>>>