About 50 results
Open links in new tab
  1. 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.

  2. 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 …

  3. 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 …

  4. 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 …

  5. 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 …

  6. 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 …

  7. 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 …

  8. 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 …

  9. 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.

  10. 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 …