We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c2934 commit 4752488Copy full SHA for 4752488
Doc/howto/regex.rst
@@ -488,7 +488,7 @@ In actual programs, the most common style is to store the
488
Python 3.8 added assignment expressions that shorten the above pattern
489
by a line::
490
491
- p = re.compile( ... )
+ p = re.compile(...)
492
if (m := p.match( 'string goes here' )):
493
print('Match found: ', m.group())
494
else:
0 commit comments