Essa é a minha solução até o momento, vou avançando para aprender mais para poder melhorar ou corrigir algo que esteja errado
def play():
print(25*"/")
print("/ The Hangman Game / ")
print(25*"/")
secret_country = "brasil"
hanged = False
escaped = False
while(not hanged and not escaped):
print("Playing The Hangman Game" "\n")
print("What's the country? _ _ _ _ _ _")
shot = input("Type the country: ")
if(shot in secret_country):
print("Escaped")
break
else:
print("Hanged!")
print("Game Over")
if(__name__ == "__main__"):
play()