mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 09:42:07 +02:00
15 lines
223 B
Markdown
15 lines
223 B
Markdown
# 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}}`
|