About 50 results
Open links in new tab
  1. turtle — Turtle graphics — Python 3.14.2 documentation

    1 day ago · The turtle module makes this possible by exposing all its basic functionality as functions, available with from turtle import *. The turtle graphics tutorial covers this approach. It’s worth noting …

  2. base64 — Base16, Base32, Base64, Base85 Data Encodings — Python …

    1 day ago · This module provides functions for encoding binary data to printable ASCII characters and decoding such encodings back to binary data. This includes the encodings specified in RFC 4648 …

  3. Dictionary Objects — Python 3.15.0a4 documentation

    4 days ago · Dictionary View Objects: Ordered Dictionaries: Python’s C API provides interface for collections.OrderedDict from C. Since Python 3.7, dictionaries are ordered by default, so there is …

  4. Importing Modules — Python 3.14.2 documentation

    3 days ago · Importing Modules ¶ PyObject *PyImport_ImportModule(const char *name) ¶ Return value: New reference. Part of the Stable ABI. This is a wrapper around PyImport_Import() which takes a …

  5. random — Generate pseudo-random numbers — Python 3.14.2 …

    1 day ago · Source code: Lib/random.py This module implements pseudo-random number generators for various distributions. For integers, there is uniform selection from a range. For sequences, there …

  6. string — Common string operations — Python 3.14.2 documentation

    2 days ago · Source code: Lib/string/__init__.py String constants: The constants defined in this module are: Custom String Formatting: The built-in string class provides the ability to do complex variable …

  7. asyncore — Asynchronous socket handler — Python 3.11.14 …

    Mar 11, 2014 · Source code: Lib/asyncore.py This module provides the basic infrastructure for writing asynchronous socket service clients and servers. Availability: not Emscripten, not WASI. This …

  8. math — Mathematical functions — Python 3.11.14 documentation

    Mar 11, 2014 · This module provides access to the mathematical functions defined by the C standard. These functions cannot be used with complex numbers; use the functions of the same name from …

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

    2 days ago · Source code: Lib/venv/ The venv module supports creating lightweight “virtual environments”, each with their own independent set of Python packages installed in their site …

  10. 4. Using Python on Windows — Python 3.11.14 documentation

    Mar 11, 2014 · This document aims to give an overview of Windows-specific behaviour you should know about when using Python on Microsoft Windows. Unlike most Unix systems and services, Windows …