1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-08 14:25:59 +02:00
tldr/pages/common/python.md
Igor Shubovych 89f880d3ff Add python
2015-11-22 22:27:42 +02:00

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}}`