Posts by André Martins • 11 points
1 post
-
0
votes2
answers290
viewsQ: Validation of input data using functions, Try and except
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:…