
1. Command line and environment — Python 3.14.0 documentation
The CPython interpreter scans the command line and the environment for various settings. CPython implementation detail: Other implementations’ command line schemes may differ.
2. Using the Python Interpreter — Python 3.14.0 documentation
2 days ago · Since Python statements often contain spaces or other characters that are special to the shell, it is usually advised to quote command in its entirety. Some Python modules are also …
The Python Language Reference — Python 3.14.0 documentation
3 days ago · The Python Language Reference ¶ This reference manual describes the syntax and “core semantics” of the language. It is terse, but attempts to be exact and complete. The …
The Python Tutorial — Python 3.14.0 documentation
2 days ago · After reading it, you will be able to read and write Python modules and programs, and you will be ready to learn more about the various Python library modules described in The …
2. Using Python on Unix platforms — Python 3.14.0 documentation
2 days ago · Python comes preinstalled on most Linux distributions, and is available as a package on all others. However there are certain features you might want to use that are not available …
4. Using Python on Windows — Python 3.14.0 documentation
3 days ago · After installation, the python, py, and pymanager commands should be available. If you have existing installations of Python, or you have modified your PATH variable, you may …
cmd — Support for line-oriented command interpreters - Python
3 days ago · Basic turtle commands such as forward() are added to a Cmd subclass with method named do_forward(). The argument is converted to a number and dispatched to the turtle …
argparse — Parser for command-line options, arguments and
3 days ago · For a more gentle introduction to Python command-line parsing, have a look at the argparse tutorial. The argparse module makes it easy to write user-friendly command-line …
pdb — The Python Debugger — Python 3.14.0 documentation
2 days ago · Commands that the debugger doesn’t recognize are assumed to be Python statements and are executed in the context of the program being debugged. Python …
subprocess — Subprocess management — Python 3.14.0 …
3 days ago · Prior to Python 3.5, these three functions comprised the high level API to subprocess. You can now use run() in many cases, but lots of existing code calls these functions.