Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 191 Bytes

Readme.md

File metadata and controls

15 lines (13 loc) · 191 Bytes

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