pyton como identificar se é numero code example
Example 1: pyton como identificar se é numero
def is_simple_number(value):
if not value.strip().replace('-', '').replace('+', '').replace('.', '').isdigit():
return False
try:
float(value)
except ValueError:
return False
return True
Example 2: python verificar se é numero
case = input(escolha um valor de 0 a 10)
if type(case) != int:
print("Digite apenas numeros!")
else:
#--processo