
Regular Expression HOWTO — Python 3.14.3 documentation
2 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 through the …
re — Regular expression operations — Python 3.14.3 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.
The Python Standard Library — Python 3.14.3 documentation
2 days ago · While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with …
Python Documentation contents — Python 3.14.3 documentation
Why does Python use methods for some functionality (e.g. list.index ()) but functions for other (e.g. len (list))? Why is join () a string method instead of a list or tuple method?
glob — Unix style pathname pattern expansion — Python 3.14.3 …
2 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-1.5/Makefile) …
What’s New In Python 3.12
2 days ago · More strict rules are now applied for numerical group references and group names in regular expressions. Only sequence of ASCII digits is now accepted as a numerical reference.
Python HOWTOs — Python 3.14.3 documentation
2 days ago · Modeled on the Linux Documentation Project’s HOWTO collection, this collection is an effort to foster documentation that’s more detailed than the Python Library Reference.
What’s New In Python 3.13 — Python 3.14.2 documentation
Jan 17, 2026 · Passing any arguments has been deprecated since Python 3.14, as the Python version does not permit any arguments, but the C version allows any number of positional or keyword …
The Python Tutorial — Python 3.14.3 documentation
1 day 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 …
Functional Programming HOWTO — Python 3.14.3 documentation
Python expects iterable objects in several different contexts, the most important being the for statement. In the statement for X in Y, Y must be an iterator or some object for which iter() can create an iterator.