Este código atenderia de forma completa o solicitado?
tentativa = 0
while tentativa <= 2:
chute_str = input("Digite o seu numero: ")
chute = int(chute_str)
if chute == numero_secreto:
print("Parabéns! Você acertou.")
break
else:
if chute > numero_secreto:
print("Errado! O numero secreto é menor, tente novamente.")
elif chute < numero_secreto:
print("Errado! O numero secreto é maior, tente novamente.")
tentativa = tentativa + 1
if tentativa > 2 and chute != numero_secreto:
print("Game Over")