Posts by ricardo fire • 1 point
1 post
-
0
votes2
answers290
viewsA: Validation of input data using functions, Try and except
Code: while True: try: number = int(input("Por favor, digite o seu número aqui e veja o que acontece: ")) except: print ("Por favor, insira somente números inteiros positivos") NOTE: if it is only…