About 6,860 results
Open links in new tab
  1. 2. Using the Python Interpreter — Python 3.14.0 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 …

  2. 1. Command line and environment — Python 3.14.0 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 …

  3. 1. Embedding Python in Another Application

    2 days ago · It is not necessarily trivial to find the right flags to pass to your compiler (and linker) in order to embed the Python interpreter into your application, particularly because Python needs …

  4. 4. Using Python on Windows — Python 3.14.0 documentation

    2 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.

  5. venv — Creation of virtual environments — Python 3.14.0 …

    2 days ago · Used to contain a specific Python interpreter and software libraries and binaries which are needed to support a project (library or application). These are by default isolated …

  6. Python support for free threading — Python 3.14.0 documentation

    2 days ago · Starting with the 3.13 release, CPython has support for a build of Python called free threading where the global interpreter lock (GIL) is disabled. Free-threaded execution allows …

  7. Python Setup and Usage — Python 3.14.0 documentation

    3 days 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 …

  8. What’s New In Python 3.13 — Python 3.15.0a1 documentation

    2 days ago · 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 …

  9. 6. Using Python on Android — Python 3.14.0 documentation

    2 days ago · As a result, the only way you can use Python on Android is in embedded mode – that is, by writing a native Android application, embedding a Python interpreter using libpython, …

  10. tkinter — Python interface to Tcl/Tk — Python 3.14.0 documentation

    2 days ago · Running python -m tkinter from the command line should open a window demonstrating a simple Tk interface, letting you know that tkinter is properly installed on your …