
string — Common string operations — Python 3.14.2 …
3 days ago · The Formatter class in the string module allows you to create and customize your own string formatting behaviors using the same implementation as the built-in format() method.
Text Processing Services — Python 3.14.2 documentation
2 days ago · The modules described in this chapter provide a wide range of string manipulation operations and other text processing services. The codecs module described under Binary …
6. Modules — Python 3.14.2 documentation
4 days ago · Within a module, the module’s name (as a string) is available as the value of the global variable __name__. For instance, use your favorite text editor to create a file called …
Regular Expression HOWTO — Python 3.14.2 documentation
4 days ago · Strings have several methods for performing operations with fixed strings and they’re usually much faster, because the implementation is a single small C loop that’s been …
urllib.parse — Parse URLs into components — Python 3.14.2 …
3 days ago · This module defines a standard interface to break Uniform Resource Locator (URL) strings up in components (addressing scheme, network location, path etc.), to combine the …
codecs — Codec registry and base classes - Python
2 days ago · This module defines base classes for standard Python codecs (encoders and decoders) and provides access to the internal Python codec registry, which manages the …
json — JSON encoder and decoder — Python 3.14.2 documentation
4 days ago · Other than the ensure_ascii parameter, this module is defined strictly in terms of conversion between Python objects and Unicode strings, and thus does not otherwise directly …
ipaddress — IPv4/IPv6 manipulation library - Python
2 days ago · A string consisting of an IP address and an optional mask, separated by a slash (/). The IP address is the network address, and the mask can be either a single number, which …
struct — Interpret bytes as packed binary data — Python 3.14.2 ...
4 days ago · Creating a Struct object once and calling its methods is more efficient than calling module-level functions with the same format since the format string is only compiled once.
re — Regular expression operations — Python 3.14.2 documentation
2 days ago · A regular expression (or RE) specifies a set of strings that matches it; the functions in this module let you check if a particular string matches a given regular expression (or if a …