gpt4 book ai didi

python - 用Python实现猜词游戏

转载 作者:行者123 更新时间:2023-12-01 08:28:36 25 4
gpt4 key购买 nike

所以我坚持检查该字母是否存在于单词中。游戏需要让人猜测单词中的一个字母,并判断这个字母是否出现在单词中(仅尝试 5 次)

import random
i=0
WORDS= ("notebook","pc", "footprint")
word = random.choice(WORDS)
print(len(word))
while i<5:
inp = input("What's your guess for a letter in the word?\n")
for j in range(0,len(word)):
if inp == word[j]:
print("Yes, we have this letter.")
else:
print("No, we don't have this letter.")
i=i+1

预期的输出将是一个句子,要么确认该字母在单词中存在,要么反驳。然而,实际的输出是为给定单词中的每个字母打印一个句子,如下所示:你猜这个单词中的某个字母是什么?p是的,我们有这封信。不,我们没有这封信。

最佳答案

不必检查单词的每个字母(从而每次都打印它),只需检查字母是否在单词中:

while i<5:
inp = input("What's your guess for a letter in the word?\n")
if inp in word:
print("Yes, we have this letter.")

关于python - 用Python实现猜词游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54049998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com