猜词游戏:秘密词的猜测未被接受
我正在使用Python 3.x,还是个新手,所以希望我问的问题能让人明白。我现在要做的是一个猜单词的游戏,主要集中在for循环和字符串上。
这是我目前写的(有点乱的)代码:
import sys
import random
def Main():
PlayAgain = "y"
print("COP 1000 Project 4 - Courtney Kasonic - Guess the Word Game")
print("I'm thinking of a word; can you guess what it is?")
while PlayAgain == "y":
Words = "apple alphabet boomarang cat catharsis define decide elephant fish goat horizon igloo jackelope ketchup loop limousine monkey night octopus potato quick rebel separate test underway violin world yellow zebra".split()
SecretWord = random.choice(Words)
MissedLetters = ""
CorrectLetters = ""
ChosenWord = GetWord(Words)
Guess = FiveLetters(CorrectLetters+MissedLetters)
for Guess in ChosenWord:
CorrectLetters = CorrectLetters + Guess
ShowWord(CorrectLetters, ChosenWord)
for i in ChosenWord:
CLetters = ""
if Guess in ChosenWord:
Blanks = "_" * len(SecretWord)
for i in range(len(SecretWord)):
if SecretWord[i] in CLetters:
Blanks = Blanks[i] + SecretWord[i]
print(Blanks)
print(CLetters)
def GetWord(List):
SecretWord = random.choice(List)
return(SecretWord)
**def FiveLetters(LettersGuessed):
a = 2
if a > 1:
print("Enter five letters to check: ",end="")
Guess = input()
if len(Guess) != 5:
print("Please enter five letters.")
elif Guess in LettersGuessed:
print("You already guessed that letter.")
elif Guess not in "abcdefghijklmnopqrstuvwxyz":
print("Please enter a letter.")
else:
return(Guess)**
def ShowWord(CLetters, SecretWord):
print("\nHere is the word showing the letters that you guessed:\n")
CLetters = ""
Blanks = "_" * len(SecretWord)
for i in range(len(SecretWord)):
if SecretWord[i] in CLetters:
Blanks = Blanks[i] + SecretWord[i]
print(Blanks)
print(CLetters)
return(Blanks, SecretWord, CLetters)
def CheckLetters(Letters):
Letters = "a b c d e f g h i j k l m n o p q r s t u v w x y z".split()
for Letters in Word:
print(Letters)
return(Letters)
Main()
我加粗的部分就是我遇到问题的地方。只能输入五个字母来“检查”这些字母是否在秘密单词里。它只接受像“abcde”这样的输入,不会接受“aaaaa”或者“muihi”,也就是说,它不接受顺序不对或者有重复字母的猜测。
我还在处理下划线的问题。上面的代码是否正确我也不太确定。正确猜到的字母没有替换掉相应的下划线。
举个例子:秘密单词是dog。如果我猜的字母是“mopfe”(虽然因为上面的问题我不能这样猜),那么它会输出“_ _ _”,而不会显示“o”。
1 个回答
1
你肯定会问更多的问题,前提是你不想失败。如果你在StackOverflow上提问,最好先看看常见问题解答。因为你在用Python,所以也建议你看看风格指南(也就是PEP 8),在评论里提到过。这段代码虽然不完整,但可以帮助你入门。
import sys
import random
def main():
play_again = "y"
print("COP 1000 Project 4 - Courtney Kasonic - Guess the Word Game")
print("I'm thinking of a word; can you guess what it is?")
words = "apple alphabet boomarang cat catharsis define decide elephant fish goat horizon igloo jackelope ketchup loop limousine monkey night octopus potato quick rebel separate test underway violin world yellow zebra".split()
secret_word = random.choice(words)
correct_letters = ""
while play_again == "y":
guess = five_letters(correct_letters)
for letter in guess:
if letter in secret_word:
correct_letters += letter
show_word(correct_letters, secret_word)
def five_letters(letters_guessed):
guess = raw_input("Enter five letters to check: ")
if len(guess) != 5:
print("Please enter five letters.")
elif guess in letters_guessed:
print("You already guessed that letter.")
elif guess not in "abcdefghijklmnopqrstuvwxyz":
print("Please enter a letter.")
else:
return guess
def show_word(correct_letters, secret_word):
print("\nHere is the word showing the letters that you guessed:\n")
word_display = ""
for index, letter in enumerate(secret_word):
if letter in correct_letters:
word_display += letter
else:
word_display += "_"
print word_display
if __name__ == "__main__":
main()