logo

Método Python String isnumeric()

Pitão énumérico() O método verifica se todos os caracteres da string são numéricos ou não. Retorna True se todos os caracteres forem verdadeiros, caso contrário retorna False.

Os caracteres numéricos incluem caracteres de dígitos e todos os caracteres que possuem a propriedade de valor numérico Unicode.

Assinatura

 isnumeric() 

Parâmetros

Nenhum parâmetro é necessário.

Retornar

Ele retorna Verdadeiro ou Falso.

Vamos ver alguns exemplos do método isnumeric() para entender suas funcionalidades.

Método Python String isnumeric() Exemplo 1

Aqui, um exemplo simples é criado para verificar se a string é numérica ou não.

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

Saída:

 True 

Método Python String isnumeric() Exemplo 2

Vamos testá-lo na string não numérica, veja se ela retorna False.

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

Saída:

 False 

Método Python String isnumeric() Exemplo 3

Veja um cenário onde e como podemos aplicar o método isnumeric() na programação 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') 

Saída:

 Numeric Not numeric