You are on page 1of 1

attempts = 0

while attempts < 3:


print("hi,type password")
password = input()
if password.lower() == "awesome":
print("ur in")
break
attempts += 1

You might also like