
turtle — Turtle graphics — Python 3.14.0 documentation
2 days 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. …
Program frameworks — Python 3.14.0 documentation
3 days ago · Program frameworks ¶ This chapter is no longer maintained, and the modules it contained have been moved to their respective topical documentation. cmd — Command Line …
winsound — Sound-playing interface for Windows - Python
2 days ago · The winsound module provides access to the basic sound-playing machinery provided by Windows platforms. It includes functions and several constants.
cmd — Support for line-oriented command interpreters
3 days ago · This section presents a simple example of how to build a shell around a few of the commands in the turtle module. Basic turtle commands such as forward() are added to a Cmd …
Python Documentation contents — Python 3.14.0 documentation
Starting a turtle environment Basic drawing Pen control The turtle’s position Making algorithmic patterns How to… Get started as quickly as possible Automatically begin and end filling Use …
The Python Standard Library — Python 3.14.0 documentation
2 days ago · turtle — Turtle graphics Development Tools typing — Support for type hints pydoc — Documentation generator and online help system Python Development Mode doctest — Test …
random — Generate pseudo-random numbers — Python 3.14.0 …
2 days 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 …
csv — CSV File Reading and Writing — Python 3.14.0 documentation
2 days ago · Source code: Lib/csv.py The so-called CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. CSV format was …
os.path — Common pathname manipulations — Python 3.14.0 …
2 days ago · os.path.basename(path, /) ¶ Return the base name of pathname path. This is the second element of the pair returned by passing path to the function split(). Note that the result …
xml.etree.ElementTree — The ElementTree XML API — Python …
2 days ago · The xml.etree.ElementTree module offers a simple and efficient API for parsing and creating XML data in Python.