0
try:
number = int(input("Por favor, digite o seu número aqui e veja o que acontece: "))
except (ValueError, TypeError):
print ("Por favor, insira somente números inteiros positivos")
try:
collatz(number)
except (NameError):
print ("Não é possível executar a operação sem uma entrada válida.")
I need to include this validation code using Try and except, if the user type string (a,b,c...) or special character, it shows error and requests the integer again.
My question is specific, it has no duplicity. With my question, I got the answer I didn’t get before I did it.
– André Martins