1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 07:18:29 +01:00
tldr/pages/common/python.md

20 lines
326 B
Markdown
Raw Normal View History

2015-11-22 21:27:42 +01:00
# Python
> Python language interpreter.
2015-11-22 21:27:42 +01:00
- Call a Python interactive shell (REPL):
2015-11-22 21:27:42 +01:00
`python`
- Execute script in a given Python file:
2015-11-22 21:27:42 +01:00
`python {{script.py}}`
- Execute Python language single command:
2015-11-22 21:27:42 +01:00
`python -c {{command}}`
2015-12-09 20:30:14 +01:00
- Run library module as a script (terminates option list):
2015-12-09 20:30:14 +01:00
2015-12-09 21:28:39 +01:00
`python -m {{module}} {{arguments}}`