DAY 16: 100Days of Python

print("Welcome to My IntroLIne")
print()
print("Figure out the missing word as quickly as you can!")
print()

counter = 1
while True:
  lyrics = input("I dedicate my ______, to you my guy. ")
  if lyrics == "Life" or lyrics == "life":
    print("You got it!")
  else:
    print("Nope! Try again!")
    counter +=1
  if lyrics == "life":
    break
print("Thanks for playing!")

print("You got the correct lyrics in", counter, "attempt(s).")