
6. Modules — Python 3.14.2 documentation
2 days 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 …
5. The import system — Python 3.14.2 documentation
2 days ago · Python has only one type of module object, and all modules are of this type, regardless of whether the module is implemented in Python, C, or something else. To help organize modules and …
The Python Standard Library — Python 3.14.2 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 well as …
Python 3.14.2 documentation
2 days ago · This page is licensed under the Python Software Foundation License Version 2. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD …
ast — Abstract syntax trees — Python 3.14.2 documentation
2 days ago · The ast module helps Python applications to process trees of the Python abstract syntax grammar. The abstract syntax itself might change with each Python release; this module helps to find …
Regular Expression HOWTO — Python 3.14.2 documentation
1 day ago · This document is an introductory tutorial to using regular expressions in Python with the re module. It provides a gentler introduction than the corresponding section in the Library Reference.
The Python Tutorial — Python 3.14.2 documentation
2 days ago · After reading it, you will be able to read and write Python modules and programs, and you will be ready to learn more about the various Python library modules described in The Python …
Logging HOWTO — Python 3.14.2 documentation
The following Python module creates a logger, handler, and formatter nearly identical to those in the example listed above, with the only difference being the names of the objects:
Installing Python Modules — Python 3.14.2 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.
re — Regular expression operations — Python 3.14.2 documentation
2 days ago · This module provides regular expression matching operations similar to those found in Perl. Both patterns and strings to be searched can be Unicode strings (str) as well as 8-bit strings (bytes).