Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/konstin/python_plus_plus

Did you ever want increment (`++`) and decrement (`--`) operators in python?
https://github.com/konstin/python_plus_plus

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
```