- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
基本上我正在尝试制作刽子手类型的游戏。当猜到单词中的字母时,我希望该字母在下一轮中留在那里。我试着用一个列表来做这件事,但我不知道如何让它用字母替换特定的空白。
是的,我已经阅读了有关该主题的其他问题,但无法让它们为我工作。
import random
import time
def intro():
print ('''Welcome to the word guessing game!
You will have 6 letter guesses to figure out my word!
First you must choose a topic.
Choose from the following: (1) Cars , (2) Diseases ,
(3) Animals , or (4) Mathematical Words''')
def optionSelect():
choice = ''
while choice != '1' and choice != '2' and choice !='3' and choice !='4':
choice = input()
return choice
def checkChoice(chosenOption):
if chosenOption == '1':
sectionOne()
elif chosenOption == '2':
sectionTwo()
elif chosenOption == '3':
sectionThree()
elif chosenOption == '4':
sectionFour()
else:
print('You didnt choose an option...')
def sectionOne():
words = ['mclaren ', 'bugatti ', 'aston martin ', 'mitsubishi ']
randWord = random.choice(words)
blanks = '_ ' * len(randWord)
guessing(blanks, randWord)
def sectionTwo():
words = ['gonorrhea ', 'nasopharyngeal carcinoma ', 'ependymoma ', 'tuberculosis ']
randWord = random.choice(words)
blanks = '_ ' * len(randWord)
guessing(blanks, randWord)
def sectionThree():
words = ['tardigrade ', 'komodo dragon ', 'bontebok ', 'ferruginous hawk ']
randWord = random.choice(words)
blanks = '_ ' * len(randWord)
guessing(blanks, randWord)
def sectionFour():
words = ['pythagorean ', 'differentiation ', 'polyhedron ', 'googolplex ']
randWord = random.choice(words)
blanks = '_ ' * len(randWord)
guessing(blanks, randWord)
def guessing(blanks, randWord):
missed = []
print ()
print ("Word: ",blanks)
attempts = 15
while attempts != 0:
attempts = attempts - 1
print ('Guess a letter, you have ' + str(attempts) + ' attempts left.')
guessLetter = input()
if guessLetter in randWord:
newBlanks = " ".join(c if c in guessLetter else "_" for c in randWord)
print ('Correct!')
print ()
print ("Word: ",newBlanks)
else:
missed.append(guessLetter)
print ('That letter is not in the word, you have guessed the following letters:')
print (', '.join(missed))
print ()
playAgain = ''
while playAgain != 'yes' and playAgain!= 'no':
intro()
optionNumber = optionSelect()
checkChoice(optionNumber)
print('Do you want to play again? (yes or no)')
#Play again or not
playAgain = input()
if playAgain == 'yes':
played = 1
playAgain =''
else:
print('Thanks for Playing! Bye!')
time.sleep(2)
quit()
最佳答案
问题是您没有存储 newBlanks,因此每次用户猜对字母时,程序都会重新创建字符串。因此,您需要跟踪猜对了哪些字母。您可以通过替换 if 语句中未重估的局部变量中的每个猜测字母来实现。您可以使用以下 while 循环解决此问题:
while attempts != 0:
attempts = attempts - 1
print ('Guess a letter, you have ' + str(attempts) + ' attempts left.')
guessLetter = input()
if guessLetter in randWord:
newBlanks = " ".join(c if c in guessLetter else "_" for c in randWord)
index = 0
for letter in newBlanks:
if letter != '_' and letter != ' ':
blanks= blanks[:index] + letter + blanks[index+1:]
index += 1
print ('Correct!')
print ()
print ("Word: ",blanks)
ps,你的一些单词中有空格,你可能想确保空格不被视为猜测
关于Python猜谜游戏,用字母替换空格存入列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43982155/
我有这个代码来查找这个模式:201409250200131738007947036000 - 1,在文本内 final String patternStr = "(\\d{
我正在尝试使用正则表达式清除一些用户输入,以删除 [ 和 ] 并删除任何大于 1 个空格的空格。但我似乎无法实现我想要的效果。这是我第一次使用正则表达式,所以我对如何写出来有点困惑。 (preg_re
我正在尝试构建这个简单的正则表达式来匹配 Java 中的单词+空格,但我在尝试解决它时感到困惑。该网站上有很多类似的示例,但答案大多给出了正则表达式本身,而没有解释它是如何构造的。 我正在寻找的是形成
好吧,我已经阅读了很多建议如何消除多余空间的帖子,但无论出于何种原因,我似乎无法将这些建议应用到我的系统中,所以我在这里寻求您的帮助。 这些是我代码的最后几行: for line in rli
所以我正在我的测试存储上学习网页抓取,但我不确定如何正确地从“sizes”数组中删除空的新行。 const $ = cheerio.load(body) $('div.lis
这个问题已经有答案了: How to prevent invalid characters from being typed into input fields (8 个回答) 已关闭 9 年前。 是
有人知道如何让扫描仪忽略空间吗?我想输入名字和第二个名字,但扫描仪不让我输入,我想保存全名 String name; System.out.print("Enter name: "); name =
这个问题在这里已经有了答案: Make Vim show ALL white spaces as a character (23 个回答) 关闭 8 年前。 VIM(使用 Solarized Dar
我想使用 StreamTokenizer 从 java 文件中提取名称。我已将空格设置为逗号 inputTokenizer.whitespaceChars(',', ','); 但是,
我正在使用此代码逐行读取 txt 文件。 // Open the file that is the first command line parameter FileInputStream fstre
我似乎无法弄清楚我需要的正则表达式。这就是我想要实现的目标: {ANY CHAR} + @javax.persistence.Column(name = "{ANY 30 CHARS}") + {AN
我正在运行 StyleCop(顺便说一句,如果你想提供高质量的代码,我完全推荐它)... 我有这条线 [System.Xml.Serialization.XmlRootAttribute(Namesp
我刚刚更新到 PhpStorm 2016,我突然注意到,每次我按 Ctrl + S 保存文件时,它都会删除我在测试这段代码后按下以继续编写的空格/制表符。 请帮忙,这对我来说很烦人,因为我在每一行代码
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 Improve th
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
我已经看过几十个关于这个主题的问题和答案,但我仍然无法解决我的问题。 我在我的代码中使用了一个外部 ffmpeg 转换器,我将文件路径作为参数传递,如下所示: OutputPackage oo = c
谁能详细解释一下它们是什么以及它们之间的区别。提前致谢。 最佳答案 转义序列是代表其他内容的字符序列。例如(“\n” = 新行,“\?” = 问号等)。有关更详细的列表,请检查:https://en.
我无法从我的 javascript 文本中删除换行符。这是我正在处理的数据示例: 0: "Christian Pulisic" 1: "↵" 2: "From Wikipedia, the free
我有一个问题 - 我似乎无法从字符串的开头/结尾删除新行/空格。我在正则表达式的开头和结尾使用 \s ,甚至在获取字符串后使用 .trim() ,但无济于事。 public void extractI
我是 php 的新手,我正在尝试将一系列变量添加到 html 超链接中。但是,任何返回空格的变量都会弄乱超链接。 Grants Test
我是一名优秀的程序员,十分优秀!