python_plus_plus
Install v0.0.12
Published on Mar 26 2024 at 10:15 UTC
-
- shell
- tarball
-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/konstin/python_plus_plus/releases/download/v0.0.12/python_plus_plus-installer.sh | sh
Source
-
- shell
- tarball
-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/konstin/python_plus_plus/releases/download/v0.0.12/python_plus_plus-installer.sh | sh
Source
-
- powershell
- zip
-
powershell -c "irm https://github.com/konstin/python_plus_plus/releases/download/v0.0.12/python_plus_plus-installer.ps1 | iex"
Source
-
- shell
- tarball
-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/konstin/python_plus_plus/releases/download/v0.0.12/python_plus_plus-installer.sh | sh
Source
We weren't able to detect your OS.
This project doesn't offer Apple Silicon downloads, but you can run Intel macOS binaries via Rosetta 2.
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