Controlli In [ ]: years = int(input("Quanti anni hai? ")) while(years<=0): years = int(input("Input non accettabile, reinserire età: ")) In [ ]: years Cronometro In [ ]: import time tempo = 1 while(True): time.sleep(1) print(tempo) tempo += 1 indovina il numero a cui sto pensando In [ ]: numero_segreto = 10 tentativi = 3 print("Indovina il numero a cui sto pensando") while(tentativi > 0): print("Tentativi a disposizione %d"%(tentativi)) risposta_utente = int(input("Indovina il numero: ")) if(numero_segreto == risposta_utente): print("Hai indovinato, complimenti!") break else: print("\nRiprova: ") tentativi -= 1
Enter the password to open this PDF file:
-
-
-
-
-
-
-
-
-
-
-
-