1
resposta

Mãos na massa

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()
1 resposta

Interessante, gostei do uso (25*"/"), nunca me toquei que poderia usar isso ao invés de fazer um print tão longo