python_plus_plus

Install v0.0.12

Published on Mar 26 2024 at 10:15 UTC
View all installation options
View all installation options

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