我正在尝试为此
只定义一个函数欢迎参加考试
Word 1/5:马铃薯这个词含有多少个支持者?
3
正确!
Word 2/5:Potato这个词含有多少个元音?
1
正确!
Word 3/5:名称单词包含多少个元音
5
不正确!正确回答4
Word 4/5:是这个词包含多少个字母? 3正确!
Word 5/5:Day
这个词的第3个字母是什么?
ý
正确!
游戏结束。你的分数是4/5
@Niemmi喜欢这个吗? 随机导入 导入字符串
def consonant_count(word):
word = word.lower()
return len([x for x in word if x in consonants])
def vowel_count(word):
word = word.lower()
return len([x for x in word if x in vowels])
def prompt_letter_count(word):
correct = word_map[word]['letters']
ans = input('How many letters does "{}" contain?'.format(word))
return check(int(ans), correct)
def prompt_vowel_count(word):
correct = word_map[word]['vowels']
ans = input('How many vowels does "{}" contain?'.format(word))
return check(int(ans), correct)
def prompt_consonant_count(word):
correct = word_map[word]['consonants']
ans = input('How many consonants does "{}" contain?'.format(word))
return check(int(ans), correct)
def prompt_random_letter(word):
n = random.randint(0, len(word))
correct = word[n-1]
ans = input('What is letter {} of "{}"?'.format(n, word))
return check(int(ans).lower(), correct.lower())
def check(ans, correct):
if ans == correct:
return prompt_correct()
return prompt_incorrect()
def prompt_correct():
print('That is correct! :)')
return 1
def prompt_incorrect():
print('That is incorrect :(')
return 0
def next_question(word):
q_type = input_map[random.randint(1, 4)]
return q_type(word)
vowels = ['a', 'e', 'i', 'o', 'u']
consonants = [x for x in string.ascii_lowercase if x not in vowels]
quizWords = ['WOMBAT', 'COMPUTER', 'BOOKS', 'DAY', 'NIGHT', 'HOUR', 'POTATO', 'HUGE', 'TINY', 'GOOD', 'BAD', 'YES', 'NO', 'HOUSE', 'QUESTION', 'BALLOON', 'CAT', 'DUCK', 'KOOKARBURRA', 'POSTER', 'TELEVISION', 'PRINCE', 'RHYTHM', 'SUDDENLY', 'SNOW', 'MAGNET', 'TOWEL', 'WALKING', 'SPEAKER', 'UNCHARACTERISTICALLY']
word_map = {x:{'consonants':consonant_count(x), 'vowels':vowel_count(x), 'letters':len(x)} for x in quizWords}
input_map = {1:prompt_letter_count, 2:prompt_vowel_count, 3:prompt_consonant_count, 4:prompt_random_letter}
def start_quiz(number_questions):
current_question = 0
correct_questions = 0
if number_questions > len(quizWords):
number_questions = len(quizWords)
sample_questions = random.sample(quizWords, number_questions)
print('WELCOME TO YOUR QUIZ')
print ('---------------------')
for x in sample_questions:
print ("Question {}/{}:".format(current_question+1, number_questions))
correct_questions += next_question(x)
print ('---------------------')
current_question += 1
print ('Congragulations on completing your quiz!')
print (" Score {}/{}:".format(correct_questions , number_questions))
try_again = input('Would you like to try again? (y/n)').lower()
if try_again == 'y' or try_again == 'yes':
start_quiz(number_questions)
start_quiz(4)
答案 0 :(得分:2)
问题在于,您期望input
返回int
,但它在Python 3上没有这样做.Python 3 input
的工作方式与{{3}相同在Python 2上返回一个你需要自己转换为其他类型的字符串。您应该能够通过在所需位置进行转换并将所有raw_input
调用切换到input
来修复代码,因为Python 3上没有raw_input
。
示例:
def prompt_letter_count(word):
correct = word_map[word]['letters']
ans = input('How many letters does "{}" contain?'.format(word))
return check(int(ans), correct) # instead of check(ans, correct)