pyton como identificar se c3 a9 numero

Solutions on MaxInterview for pyton como identificar se c3 a9 numero by the best coders in the world

showing results for - "pyton como identificar se c3 a9 numero"
Nelia
08 Jul 2017
1def is_simple_number(value):
2    if not value.strip().replace('-', '').replace('+', '').replace('.', '').isdigit():
3        return False
4    try:
5         float(value)
6    except ValueError:
7         return False
8    return True
Sophie
14 Sep 2017
1case = input(escolha um valor de 0 a 10)
2if type(case) != int:
3   print("Digite apenas numeros!")
4else:
5   #--processo