
Regular Expression HOWTO — Python 3.14.0 documentation
4 days ago · Regular expressions (called REs, or regexes, or regex patterns) are essentially a tiny, highly specialized programming language embedded inside Python and made available …
re — Regular expression operations — Python 3.14.0 documentation
2 days ago · Compile a regular expression pattern into a regular expression object, which can be used for matching using its match(), search() and other methods, described below.
glob — Unix style pathname pattern expansion - Python
3 days ago · Return a possibly empty list of path names that match pathname, which must be a string containing a path specification. pathname can be either absolute (like /usr/src/Python …
fnmatch — Unix filename pattern matching — Python 3.14.0 …
4 days ago · Source code: Lib/fnmatch.py This module provides support for Unix shell-style wildcards, which are not the same as regular expressions (which are documented in the re …
6. Expressions — Python 3.15.0a2 documentation
4 days ago · An assignment expression (sometimes also called a “named expression” or “walrus”) assigns an expression to an identifier, while also returning the value of the expression.
Index — Python 3.14.0 documentation
3 days ago · \Z in regular expressions \z in regular expressions ^ (caret) in curses module in regular expressions, [1] in string formatting marker, [1] operator, [1] ^= augmented assignment …
token --- Constants used with Python parse trees
Refer to the file Grammar/Tokens in the Python distribution for the definitions of the names in the context of the language grammar. The specific numeric values which the names map to may …