Posts by Fnkiu • 1 point
1 post
-
-1
votes1
answer55
viewsQ: How to compare if a number entered by the user is equal to a certain value
I have this code: idade = input('Qual a sua idade? ') if(idade == 33): print('Ok, não parece que você está mentindo.') else: print('Você tem certeza que não pulou alguns dígitos?') Regardless of the…