【发布时间】:2016-01-08 16:51:52
【问题描述】:
import random
#create a sequence of words to choose from
WORDS = ("python", "jumble", "easy", "difficult", "answer", "xylophone")
#pick one word randomly from the sequence
word = random.choice(WORDS)
#create a variable to use later to see if the guess is correct
correct = word
#create a jumbled version of the word
jumble = ""
count = 1
score = 100
hint = ""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position+1):]
#start the game
print ("""
Welcome to Word Jumble!
Unscramble the letters to make a word.
(Press the enter key at the prompt to quit.)
""")
print("The jumble is: ", jumble)
guess = input("Your guess: ").lower()
while(guess != correct) and (guess != ""):
print("Sorry, that's not it.")
guess = input("Your guess: ").lower()
count += 1
if count == 3:
option = input("Would you like a hint? (yes/no)" + '\n').lower()
if option == "yes":
hint = "yes"
if word == "python":
print("HINT: This was used to make this game.")
elif word == "jumble":
print("HINT: The name of the game.")
elif word == "easy":
print("HINT: Part of the Staples slogan.")
elif word == "difficult":
print("HINT: A synonym for hard.")
elif word == "answer":
print("HINT: Opposite of question.")
elif word == "xylophone":
print("HINT: An instrument.")
if guess == correct:
print("That's it! You guess it!\n")
score = score - 5*count
if hint == "yes":
score = score - 20
print("Thanks for playing. The word was", correct, ".")
print("You score is: " + str(score))
input("\n\nPress the enter key to exit.")
所以我在 python 中制作了这个小游戏,基本上要求用户解读单词,我在执行所有 if 语句时遇到问题。当我运行我的程序时,它可以正常工作到它向用户询问提示的部分。在回答是提示时,它会循环回到 while 循环,而不是显示提示,它只是说“对不起,不是这样”并继续循环直到用户得到正确的答案。因此,代码中的以下 if 语句没有被执行,有人可以解释为什么会这样以及如何解决它吗?
if option == "yes":
hint = "yes"
if word == "python":
print("HINT: This was used to make this game.")
elif word == "jumble":
print("HINT: The name of the game.")
elif word == "easy":
print("HINT: Part of the Staples slogan.")
elif word == "difficult":
print("HINT: A synonym for hard.")
elif word == "answer":
print("HINT: Opposite of question.")
elif word == "xylophone":
print("HINT: An instrument.")
【问题讨论】:
标签: python python-3.x if-statement while-loop