konstin / python_plus_plus

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

Home Page:https://konstin.github.io/python_plus_plus/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

https://konstin.github.io/python_plus_plus/


Languages

Language:Rust 99.7%Language:Python 0.3%