About 400 results
Open links in new tab
  1. turtle — Turtle graphics — Python 3.14.0 documentation

    1 day ago · Tutorial ¶ New users should start here. In this tutorial we’ll explore some of the basics of turtle drawing. Starting a turtle environment ¶ In a Python shell, import all the objects of the …

  2. 5. The import system — Python 3.14.0 documentation

    2 days ago · The import statement combines two operations; it searches for the named module, then it binds the results of that search to a name in the local scope. The search operation of …

  3. 6. Modules — Python 3.14.0 documentation

    1 day 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. cmd — Support for line-oriented command interpreters - Python

    1 day ago · The cmd module is mainly useful for building custom shells that let a user work with a program interactively. This section presents a simple example of how to build a shell around a …

  5. Installing Python Modules — Python 3.14.0 documentation

    2 days ago · Python has typically relied heavily on source based distribution, with end users being expected to compile extension modules from source as part of the installation process.

  6. Importing Modules — Python 3.14.0 documentation

    2 days ago · The modules described in this chapter provide new ways to import other Python modules and hooks for customizing the import process. The full list of modules described in …

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

    2 days ago · When your Python application uses a class in Tkinter, e.g., to create a widget, the tkinter module first assembles a Tcl/Tk command string. It passes that Tcl command string to …

  8. colorsys — Conversions between color systems — Python 3.14.0 …

    2 days ago · The colorsys module defines bidirectional conversions of color values between colors expressed in the RGB (Red Green Blue) color space used in computer monitors and …

  9. winsound — Sound-playing interface for Windows - Python

    1 day ago · The winsound module provides access to the basic sound-playing machinery provided by Windows platforms. It includes functions and several constants.

  10. The Python Standard Library — Python 3.14.0 documentation

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