Python3 画哈根曼游戏代码

1 投票
1 回答
2437 浏览
提问于 2025-04-18 01:37

我有一段可以运行的Python 3的猜单词游戏代码,但我不知道怎么让用户在主函数里选择难度(简单(9个字母)、中等(7个字母)、困难(5个字母))。另外,有没有更简单的代码可以用来实现这个功能?

import random 
WORDLIST = ("phone", "laptop", "desktop", "sewer", "television", "never", "guess", "nice", "chair", "car");
WORD = random.choice(WORDLIST)
ACCEPTABLE = ("abcdefghijklmnopqrstuvwxyz")

guessed = []
state = 0
hasWon = 0
playedOnce = 0

def menu ():
    print("""
    1. Easy (9 misses)
    2. Medium (7 misses)
    3. Hard (5 misses)
    """)
    return int(input("What level do you want to play?:"))

def wantsToPlay():
    if (not playedOnce):
        return 1
    l = input("\nWould you like to play again? (y/n)")
    while (l != "y" and l != "Y" and l != "n" and l != "N"):
        l = input("\nWould you like to play again? (y/n)")
    if (l.lower() == "y"):
        return 1
    return 0

def takeNewLetter():
    global state, hasWon
    newPrint("So far, you have guessed the following letters...")
    for g in guessed:
        print(g, end=" ")
    letter = input("\n\nWhat letter would you like to guess next?\n")
    while (letter in guessed or letter not in ACCEPTABLE):
        if (len(letter) > 1):
            if (letter.lower() == WORD.lower()):
                 newPrint("You win!")
                 hasWon = 1
                 break
            else:
                newPrint("Boo... that was wrong... you're dead...")
                state = 7
                break
        else:
            if (letter not in ACCEPTABLE):
                letter = input("That character is unacceptable. You many only enter lower case letters.\n")
            else:
                letter = input("You have already guessed that letter, try another one...\n")
    guessed.append(letter)
    if (letter not in WORD):
        state += 1
    return

def drawWord():
    tempWord = ""
    for c in WORD:
        if (c in guessed):
            tempWord += c + " "
        else:
            tempWord += "_ "
    newPrint(tempWord)
    return

def drawStickman():
    if (state >= 7):
        print("   _______")
        print("|/      |")
        print("|      (_)")
        print("|      \|/")
        print("|       |")
        print("|      / \\")
        print("|")
        print("|___")
        print("Oops. You're dead.")
    elif (state == 6):
        print("   _______")
        print("|/      |")
        print("|      (_)")
        print("|      \|/")
        print("|       |")
        print("|      / ")
        print("|")
        print("|___")
    elif (state == 5):
        print("   _______")
        print("|/      |")
        print("|      (_)")
        print("|      \|/")
        print("|       |")
        print("|")
        print("|")
        print("|___")
    elif (state == 4):
        print("   _______")
        print("|/      |")
        print("|      (_)")
        print("|      \|/")
        print("|")
        print("|")
        print("|")
        print("|___")
    elif (state == 3):
        print("   _______")
        print("|/      |")
        print("|      (_)")
        print("|      \|")
        print("|")
        print("|")
        print("|")
        print("|___")
    elif (state == 2):
        print("   _______")
        print("|/      |")
        print("|      (_)")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|___")
    elif (state == 2):
        print("   _______")
        print("|/      |")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|___")
    elif (state == 1):
        newPrint("As this is your first mistake, I will let you off...")
        print("   _______")
        print("|/")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|___")
    elif (state == 0):
        print("   _______")
        print("|/")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|")
        print("|___")

def hasGuessed():
    if (hasWon == 1):
        return 1
    if (state >= 7):
        return 1
    for c in WORD:
        if (c not in guessed):
            return 0
    if (len(guessed) == 0):
        return 0
    return 1

def setup_game():
    newPrint("Welcome to the Hangman game!")
    newPrint("I have chosen a random word from my super secret list, try to guess it before your stickman dies!")

def newPrint(message, both = 1):
    msg = "\n" + message
    if (both != 1):
        msg += "\n"
    print(msg)

def main():
    global guessed, hasWon, state, playedOnce, WORD, WORDLIST
    setup_game()
    newPrint("My word is " + str(len(WORD)) + " letters long.")
    while (wantsToPlay() == 1):
        WORD = random.choice(WORDLIST)
        guessed = []
        playedOnce = 1
        hasWon = 0
        state = 0
        while (hasGuessed() == 0 and state < 7):
            drawStickman()
            drawWord()
            takeNewLetter()
        drawStickman()
        newPrint("My word was " + WORD)

main()

1 个回答

0

你真正需要的是一个玩家可能犯错的次数。所以我写了一个 menu() 函数来返回这个值:

def menu():
    print("""
    1. Easy (9 misses)
    2. Medium (7 misses)
    3. Hard (5 misses)
    """)
    while True:
        level = input("What level do you want to play?:")
        if level in ('1', '2', '3'):
            return {'1': 9, '2': 7, '3': 5}[level]
        print('Wrong answer!')

现在你需要把这个菜单和它的结果放到你的主程序里。在 setup_game() 之后调用你的菜单函数,并把原本的常量 7 替换成它的结果。

def main():
    global guessed, hasWon, state, playedOnce, WORD, WORDLIST
    setup_game()
    allowed_misses = menu()
    ...
        while (hasGuessed() == 0 and state < allowed_misses)

你还应该从 hasGuessed() 函数中去掉状态检查,因为这个检查是多余的,而且使用了一个常量值。

撰写回答