About 50 results
Open links in new tab
  1. 2. Using the Python Interpreter — Python 3.14.3 documentation

    2 days ago · The interpreter operates somewhat like the Unix shell: when called with standard input connected to a tty device, it reads and executes commands interactively; when called with a file …

  2. Python Setup and Usage — Python 3.14.3 documentation

    1 day ago · This part of the documentation is devoted to general information on the setup of the Python environment on different platforms, the invocation of the interpreter and things that make working …

  3. 4. Using Python on Windows — Python 3.14.3 documentation

    3 days ago · To allow shebang lines in Python scripts to be portable between Unix and Windows, this launcher supports a number of ‘virtual’ commands to specify which interpreter to use.

  4. 1. Command line and environment — Python 3.14.3 documentation

    The Python interpreter is configured by default to use colors to highlight output in certain situations such as when displaying tracebacks. This behavior can be controlled by setting different environment …

  5. 3. An Informal Introduction to Python

    2 days ago · The interpreter acts as a simple calculator: you can type an expression into it and it will write the value. Expression syntax is straightforward: the operators +, -, * and / can be used to …

  6. concurrent.interpreters — Multiple interpreters in the same ... - Python

    4 days ago · Each actual thread in Python, even if you’re only running in the main thread, has its own current execution context. Multiple threads can use the same interpreter or different ones.

  7. Built-in Functions — Python 3.14.3 documentation

    2 days ago · Python doesn’t depend on the underlying operating system’s notion of text files; all the processing is done by Python itself, and is therefore platform-independent.

  8. What’s New In Python 3.13 — Python 3.14.2 documentation

    Jan 17, 2026 · New Features ¶ A better interactive interpreter ¶ Python now uses a new interactive shell by default, based on code from the PyPy project. When the user starts the REPL from an interactive …

  9. What’s new in Python 3.14

    1 day ago · Python 3.14 is the latest stable release of the Python programming language, with a mix of changes to the language, the implementation, and the standard library.

  10. venv — Creation of virtual environments — Python 3.14.3 documentation

    2 days ago · You don’t specifically need to activate a virtual environment, as you can just specify the full path to that environment’s Python interpreter when invoking Python.