logo

Python String isnumeric() Mètode

Python isnumèric () El mètode comprova si tots els caràcters de la cadena són caràcters numèrics o no. Retorna True si tots els caràcters són certs, en cas contrari retorna False.

Els caràcters numèrics inclouen caràcters de dígits i tots els caràcters que tenen la propietat de valor numèric Unicode.

Signatura

 isnumeric() 

Paràmetres

No es requereix cap paràmetre.

Tornar

Retorna True o False.

Vegem alguns exemples del mètode isnumeric() per entendre les seves funcionalitats.

Python String isnumeric() Mètode Exemple 1

Aquí, es crea un exemple senzill per comprovar que la cadena és numèrica o no.

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

Sortida:

 True 

Python String isnumeric() Mètode Exemple 2

Provem-ho a la cadena no numèrica, veiem que retorna Fals.

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

Sortida:

 False 

Python String isnumeric() Mètode Exemple 3

Vegeu un senari on i com podem aplicar el mètode isnumeric() a la programació de 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') 

Sortida:

 Numeric Not numeric