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