About 60,400 results
Open links in new tab
  1. The Python Tutorial — Python 3.14.2 documentation

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

  2. Python 3.14.2 documentation

    Dec 21, 2025 · This page is licensed under the Python Software Foundation License Version 2. Examples, recipes, and other code in the documentation are additionally licensed under the Zero …

  3. 7. Simple statements — Python 3.14.2 documentation

    3 days ago · Expression statements are used (mostly interactively) to compute and write a value, or (usually) to call a procedure (a function that returns no meaningful result; in Python, procedures …

  4. Python Setup and Usage — Python 3.14.2 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 make working …

  5. 3. An Informal Introduction to Python — Python 3.14.2 documentation

    2 days ago · Python knows a number of compound data types, used to group together other values. The most versatile is the list, which can be written as a list of comma-separated values (items) between …

  6. dis — Disassembler for Python bytecode — Python 3.14.2 documentation

    1 day ago · These instructions are hidden by default, but can be shown by passing show_caches=True to any dis utility. Furthermore, the interpreter now adapts the bytecode to specialize it for different …

  7. 4. Using Python on Windows — Python 3.14.2 documentation

    2 days ago · The recommended command for launching Python is python, which will either launch the version requested by the script being launched, an active virtual environment, or the default installed …

  8. 2. Using Python on Unix platforms — Python 3.14.2 documentation

    3 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 on your …

  9. venv — Creation of virtual environments — Python 3.14.2 documentation

    2 days ago · A virtual environment is created on top of an existing Python installation, known as the virtual environment’s “base” Python, and by default is isolated from the packages in the base …

  10. 12. Virtual Environments and Packages — Python 3.14.2 documentation

    2 days ago · Activating the virtual environment will change your shell’s prompt to show what virtual environment you’re using, and modify the environment so that running python will get you that …