Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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?
- Host: GitHub
- URL: https://github.com/konstin/python_plus_plus
- Owner: konstin
- Created: 2023-11-12T13:26:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-26T10:16:30.000Z (10 months ago)
- Last Synced: 2024-11-26T05:42:19.606Z (about 2 months ago)
- Language: Rust
- Homepage: https://konstin.github.io/python_plus_plus/
- Size: 156 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
```