tldr/pages/common/python.md

20 lines
320 B
Markdown
Raw Normal View History

2015-11-22 23:27:42 +03:00
# Python
> Python language interpeter
- 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}}`
2015-12-09 22:30:14 +03:00
2015-12-09 23:28:39 +03:00
- Run library module as a script (terminates option list)
2015-12-09 22:30:14 +03:00
2015-12-09 23:28:39 +03:00
`python -m {{module}} {{arguments}}`