/python_plus_plus

Did you ever want increment (`++`) and decrement (`--`) operators in python?

Primary LanguageRust

python++

Did you ever want increment (++) and decrement (--) operators in python?

$ cat example.py
i = 0
while i < 3:
    i++
    print(i)
$ python_plus_plus example.py
1
2
3