tldr/pages/common/python.md

20 lines
328 B
Markdown
Raw Normal View History

2015-11-22 20:27:42 +00: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 19:30:14 +00:00
- Execute a Python module (SimpleHTTPServer, json.tool, etc)
`python -m {{moduleName}} {{parameters}}`