You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import random titkos_szam = random.randint(1, 100) tipp = 0 print("Gondoltam egy számra 1 és 100 között. Találd ki!") while tipp != titkos_szam: tipp = int(input("Mi a tipped? ")) if tipp < titkos_szam: print("Nagyobb számra gondoltam.") elif tipp > titkos_szam: print("Kisebb számra gondoltam.") else: print("Gratulálok! Eltaláltad!") #3