guess game in python
# Guess the Developer Name
dname="Zaheer khan"
counter=4
while True:
username=input("Enter Developer Name: ")
if username==dname:
print("You win the game")
break
else:
counter=counter-1
if counter>0:
print("Wrong name try again! ","(You have %d"%counter," left)")
else:
print("Game over".upper())
break