Será algo assim:
else:
errors += 1
if errors < 6:
print(f"\nThat's incorrect! You have {6 - errors} tries left.")
print(f"\nThe word does not contain {guess}.", "\n")
else:
hanged = True
print()
print(
"\U0001F62D " * 3,
"\n\nYou lost, love. But it's ok, you're only \U0001F480",
"\n",
)
print(f"The word was {secret_word}", "\U0001F44B " * 3, "\n")
game_on = False
break