isnumeric()
Python String isnumeric() Method
Last Updated : 30 Dec 2025
Python isnumeric() method checks whether all the characters of the string are numeric characters or not. It returns True if all the characters are true, otherwise returns False.
Numeric characters include digit characters and all the characters which have the Unicode numeric value property.
Syntax of Python String isnumeric() Method
It has the following syntax:
Parameters
No parameter is required.
Return
It returns either True or False.
Different Examples of Python String isnumeric() Method
Let's see some examples of isnumeric() method to understand it's functionalities.
Example 1
Here, a simple example is created to check the string is numeric or not.
Output:
Example 2
Let's test it on the non-numeric string, see it returns False.
Output:
Example 3
See a senario where and how we can apply isnumeric() method in python programming
Output: