About 50 results
Open links in new tab
  1. random — Generate pseudo-random numbers — Python 3.14.3 …

    3 days ago · Most of the random module’s algorithms and seeding functions are subject to change across Python versions, but two aspects are guaranteed not to change: If a new seeding method is …

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

    When called with -m module-name, the given module is located on the Python module path and executed as a script. In non-interactive mode, the entire input is parsed before it is executed.

  3. 6. Modules — Python 3.14.3 documentation

    3 days ago · Such a file is called a module; definitions from a module can be imported into other modules or into the main module (the collection of variables that you have access to in a script …

  4. The Python Standard Library — Python 3.14.3 documentation

    3 days ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as well as …

  5. secrets — Generate secure random numbers for managing secrets — …

    3 days ago · The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related …

  6. 5. The import system — Python 3.14.3 documentation

    3 days ago · Functions such as importlib.import_module() and built-in __import__() can also be used to invoke the import machinery. The import statement combines two operations; it searches for the …

  7. turtle — Turtle graphics — Python 3.14.3 documentation

    3 days ago · One of the joys of turtle graphics is the immediate, visual feedback that’s available from simple commands - it’s an excellent way to introduce children to programming ideas, with a minimum …

  8. statistics — Mathematical statistics functions — Python 3.14.3 ...

    3 days ago · Return a function that makes a random selection from the estimated probability density function produced by kde(data, h, kernel). Providing a seed allows reproducible selections.

  9. 10. Brief Tour of the Standard Library — Python 3.14.3 documentation

    Nov 11, 2025 · The doctest module provides a tool for scanning a module and validating tests embedded in a program’s docstrings. Test construction is as simple as cutting-and-pasting a typical …

  10. Installing Python Modules — Python 3.14.3 documentation

    3 days ago · This allows Python users to share and collaborate effectively, benefiting from the solutions others have already created to common (and sometimes even rare!) problems, as well as potentially …