Python Module Index — Python 3.10.2 documentation
docs.python.org › 3 › py-modindexMar 11, 2022 · The module that provides the built-in namespace. bz2: Interfaces for bzip2 compression and decompression. c: calendar: Functions for working with calendars, including some emulation of the Unix cal program. cgi: Helpers for running Python scripts via the Common Gateway Interface. cgitb: Configurable traceback handler for CGI scripts. chunk
Python Built-in Modules - TutorialsTeacher
www.tutorialsteacher.com › python-builtin-modulesIn addition to built-in functions, a large number of pre-defined functions are also available as a part of libraries bundled with Python distributions. These functions are defined in modules are called built-in modules. Built-in modules are written in C and integrated with the Python shell. Each built-in module contains resources for certain system-specific functionalities such as OS management, disk IO, etc.
Python Built-in Modules - Tutlane
www.tutlane.com › python › python-built-in-modulesPython has a set of built-in modules such as math, os, sys, etc., to use in any python script file. The built-in modules will load automatically whenever the interpreter starts, and these modules are available as a part of python libraries. The built-in modules that are available in python interpreter written in C. To see the list of all available built-in modules, execute the help('modules') command in the python console as shown below.