Claro que entendemos
Puedes hacerlo de la forma segura o no
Forma insegura:
Código Python:
Ver originalnumero = int(raw_input("Dame un numero"))
Forma segura:
Código Python:
Ver originalwhile True:
try:
numero = int(raw_input("Dame un numero: "))
except ValueError:
print "Eso no fue un numero :-/"
else:
break
print "Tu numero fue %d" % numero
Hiper seguro:
Código Python:
Ver originalfrom sys import exit
while True:
try:
numero = int(raw_input("Dame un numero: "))
except ValueError:
print "Eso no fue un numero :-/"
except EOFError:
print "Fin del archivo :-)"
exit(1)
except KeyboardInterrupt:
print "Matando proceso"
exit(0)
else:
break
print "Tu numero fue %d" % numero