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.
str.isalnum()
1 parent 46d5106 commit f912c83Copy full SHA for f912c83
Doc/library/stdtypes.rst
@@ -2183,7 +2183,7 @@ expression support in the :mod:`re` module).
2183
Return ``True`` if all characters in the string are alphanumeric and there is at
2184
least one character, ``False`` otherwise. A character ``c`` is alphanumeric if one
2185
of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
2186
- ``c.isdigit()``, or ``c.isnumeric()``. For example::
+ ``c.isdigit()``, or ``c.isnumeric()``. For example:
2187
2188
.. doctest::
2189
0 commit comments