logo

Metodo Python String isnumeric()

Pitone ènumerico() Il metodo controlla se tutti i caratteri della stringa sono caratteri numerici o meno. Restituisce True se tutti i caratteri sono veri, altrimenti restituisce False.

I caratteri numerici includono i caratteri cifra e tutti i caratteri che hanno la proprietà del valore numerico Unicode.

Firma

 isnumeric() 

Parametri

Nessun parametro è richiesto.

Ritorno

Restituisce Vero o Falso.

Vediamo alcuni esempi del metodo isnumeric() per comprenderne le funzionalità.

Metodo Python String isnumeric() Esempio 1

Qui viene creato un semplice esempio per verificare che la stringa sia numerica o meno.

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

Produzione:

 True 

Metodo Python String isnumeric() Esempio 2

Proviamolo sulla stringa non numerica, vediamo che restituisce False.

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

Produzione:

 False 

Metodo Python String isnumeric() Esempio 3

Guarda uno scenario in cui e come possiamo applicare il metodo isnumeric() nella programmazione 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') 

Produzione:

 Numeric Not numeric