logo

Método isnumeric() de cadena de Python

Pitón isnumérico() El método comprueba si todos los caracteres de la cadena son numéricos o no. Devuelve Verdadero si todos los caracteres son verdaderos; en caso contrario, devuelve Falso.

Los caracteres numéricos incluyen caracteres de dígitos y todos los caracteres que tienen la propiedad de valor numérico Unicode.

Firma

 isnumeric() 

Parámetros

No se requiere ningún parámetro.

Devolver

Devuelve Verdadero o Falso.

Veamos algunos ejemplos del método isnumeric() para comprender sus funcionalidades.

Ejemplo 1 del método isnumeric() de cadena de Python

Aquí, se crea un ejemplo simple para verificar que la cadena sea numérica o no.

 # Python isnumeric() method example # Variable declaration str = '12345' # Calling function str2 = str.isnumeric() # Displaying result print(str2) 

Producción:

 True 

Python String isnumeric() Método Ejemplo 2

Probémoslo en la cadena no numérica y veremos que devuelve False.

 # Python isnumeric() method example # Variable declaration str = 'javatpoint12345' # Calling function str2 = str.isnumeric() # Displaying result print(str2) 

Producción:

 False 

Python String isnumeric() Método Ejemplo 3

Vea un escenario donde y cómo podemos aplicar el método isnumeric() en la programación en Python

 # Python isnumeric() method example str = '123452500' # True if str.isnumeric() == True: print('Numeric') else: print('Not numeric') str2 = '123-4525-00' # False if str2.isnumeric() == True: print('Numeric') else: print('Not numeric') 

Producción:

 Numeric Not numeric