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 96c9394 commit d8f0ffeCopy full SHA for d8f0ffe
Doc/library/stdtypes.rst
@@ -2090,7 +2090,7 @@ expression support in the :mod:`re` module).
2090
Return ``True`` if all characters in the string are alphanumeric and there is at
2091
least one character, ``False`` otherwise. A character ``c`` is alphanumeric if one
2092
of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
2093
- ``c.isdigit()``, or ``c.isnumeric()``. For example::
+ ``c.isdigit()``, or ``c.isnumeric()``. For example:
2094
2095
.. doctest::
2096
0 commit comments