About 400 results
Open links in new tab
  1. string — Common string operations — Python 3.14.0 …

    2 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. 6. Modules — Python 3.14.0 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 …

  3. Text Processing Services — Python 3.14.0 documentation

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

  4. re — Regular expression operations — Python 3.14.0 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 …

  5. Regular Expression HOWTO — Python 3.14.0 documentation

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

  6. Generate secure random numbers for managing secrets - Python

    3 days ago · The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and …

  7. string.templatelib — Support for template string literals — Python …

    2 days ago · Template strings are a mechanism for custom string processing. They have the full flexibility of Python’s f-strings, but return a Template instance that gives access to the static …

  8. urllib.parse — Parse URLs into components — Python 3.14.0 …

    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 …

  9. json — JSON encoder and decoder — Python 3.14.0 documentation

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

  10. ipaddress — IPv4/IPv6 manipulation library — Python 3.14.0 …

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