mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 23:17:56 +01:00
326 B
326 B
Python
Python language interpreter.
- Call a Python interactive shell (REPL):
python
- Execute script in a given Python file:
python {{script.py}}
- Execute Python language single command:
python -c {{command}}
- Run library module as a script (terminates option list):
python -m {{module}} {{arguments}}