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 9a57c93 commit 4fdfc37Copy full SHA for 4fdfc37
Doc/library/stdtypes.rst
@@ -1939,7 +1939,7 @@ expression support in the :mod:`re` module).
1939
Return ``True`` if all characters in the string are alphanumeric and there is at
1940
least one character, ``False`` otherwise. A character ``c`` is alphanumeric if one
1941
of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
1942
- ``c.isdigit()``, or ``c.isnumeric()``. For example::
+ ``c.isdigit()``, or ``c.isnumeric()``. For example:
1943
1944
.. doctest::
1945
0 commit comments