tldr/pages/common/python.md

33 lines
583 B
Markdown
Raw Normal View History

# python
2015-11-22 20:27:42 +00:00
> Python language interpreter.
> More information: <https://www.python.org>.
2015-11-22 20:27:42 +00:00
- Start a REPL (interactive shell):
2015-11-22 20:27:42 +00:00
`python`
- Execute script in a given Python file:
2015-11-22 20:27:42 +00:00
`python {{script.py}}`
2018-10-17 14:20:12 +01:00
- Execute script as part of an interactive shell:
2015-11-22 20:27:42 +00:00
2018-10-17 14:20:12 +01:00
`python -i {{script.py}}`
- Execute a Python expression:
`python -c "{{expression}}"`
2015-12-09 19:30:14 +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}}`
2018-10-17 14:20:12 +01:00
- Install a package using pip:
`python -m pip install {{package_name}}`
2018-10-17 14:20:12 +01:00
- Interactively debug a Python script:
`python -m pdb {{script.py}}`