
The Python Standard Library — Python 3.13.3 documentation
23 hours 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 …
Built-in Functions — Python 3.13.3 documentation
1 day ago · Built-in Functions¶ The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.
10. Brief Tour of the Standard Library — Python 3.13.3 …
Brief Tour of the Standard Library¶ 10.1. Operating System Interface¶ The os module provides dozens of functions for interacting with the operating system:
Introduction — Python 3.13.3 documentation
2 days ago · The library also contains built-in functions and exceptions — objects that can be used by all Python code without the need of an import statement. Some of these are defined …
math — Mathematical functions — Python 3.13.3 documentation
1 day ago · 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 …
operator — Standard operators as functions - Python
2 days ago · The operator module exports a set of efficient functions corresponding to the intrinsic operators of Python. For example, operator.add(x, y) is equivalent to the expression x+y . …
6. Modules — Python 3.13.3 documentation
23 hours ago · Standard Modules¶ Python comes with a library of standard modules, described in a separate document, the Python Library Reference (“Library Reference” hereafter).
sys — System-specific parameters and functions - Python
1 day ago · It is used to build the path of standard library and the paths of installed extension modules. It is equal to "lib" on most platforms. On Fedora and SuSE, it is equal to "lib64" on 64 …
Numeric and Mathematical Modules — Python 3.13.3 …
3 days ago · The modules described in this chapter provide numeric and math-related functions and data types. The numbers module defines an abstract hierarchy of numeric types. The …
Functional Programming Modules — Python 3.13.3 documentation
2 days ago · The modules described in this chapter provide functions and classes that support a functional programming style, and general operations on callables. The following modules are …