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 fc87e3c commit 1efeb8cCopy full SHA for 1efeb8c
Doc/library/stdtypes.rst
@@ -2161,9 +2161,9 @@ expression support in the :mod:`re` module).
2161
2162
>>> '0123456789'.isnumeric()
2163
True
2164
- >>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digit zero to nine
+ >>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digit zero to nine
2165
2166
- >>> '⅕'.isnumeric() # Vulgar fraction one fifth
+ >>> '⅕'.isnumeric() # Vulgar fraction one fifth
2167
2168
>>> '²'.isdecimal(), '²'.isdigit(), '²'.isnumeric()
2169
(False, True, True)
0 commit comments