1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ptpython.md

33 lines
416 B
Markdown
Raw Normal View History

2022-06-14 08:23:23 -04:00
# ptpython
> A better Python REPL.
> More information: <https://github.com/prompt-toolkit/ptpython>.
- Start a REPL (interactive shell):
`ptpython`
- Execute a specific Python file:
`ptpython {{path/to/file.py}}`
- Execute a specific Python file and start a REPL:
`ptpython -i {{path/to/file.py}}`
- Open the menu:
`<F2>`
2022-06-14 08:23:23 -04:00
- Open the history page:
`<F3>`
2022-06-14 08:23:23 -04:00
- Toggle paste mode:
`<F6>`
2022-06-14 08:23:23 -04:00
- Quit:
`<Ctrl d>`