py.user.next
спасибо заработало но теперь запустился БЕСКОНЕЧНЫЙ ЦИКЛ
# Викторина
#Игра на выбор правильного варианта ответа.
# вопросы которой читаются из текстового файла
import sys
def open_file(file_name, mode):
"""Открывает файл."""
try:
the_file = open(file_name, mode, encoding='utf-8')
except IOError as exc:
print("Невозможно открыть файл", file_name, " Работа программы будет завершена.\n", exc)
input("\n\nHaжмитe Enter. чтобы выйти.")
sys.exit()
else:
return the_file
def next_line(the_file):
"""Возвращает в отформатированном виде очередную строку игрового файла."""
line = the_file.readline()
line = line.replace("/", "\n")
return line
def next_block(the_file):
"""Возвращает очередной блок данных из игрового файла."""
category = next_line(the_file)
question = next_line(the_file)
answers = []
for i in range(4):
answers.append(next_line(the_file))
correct = next_line(the_file)
if correct:
correct = correct[0]
explanation = next_line(the_file)
return category, question, answers, correct, explanation
def welcome(title):
"""Приветствует игрока и сообщает тему игры."""
print("\t\tДoбpo пожаловать в игру 'Викторина' !\n")
print("\t\t", title, "\n")
def main():
trivia_file = open_file("trivia.txt", "r")
title = next_line(trivia_file)
welcome(title)
score=0
# извлечение первого блока
category, question, answers, correct, explanation = next_block(trivia_file)
while category:
# вывод вопроса на экран
print(category)
print(question)
for i in range(4):
print("\t", i + 1, " ", ar1swers[i])
# получение ответа
answer = input("Baш ответ: ")
# проверка ответа
if answer == correct:
print("\nДa!", end=" ")
score += 1
else:
print("\nHeт.", end=" ")
print(explanation)
print("Cчeт:", score, "\n\n")
# переход к следующему вопросу
category, question, answers, correct, explanation = next_block(trivia_file)
trivia_file.close()
print("Этo был последний вопрос!")
print("Ha вашем счету", score)
main()
input("\n\nHaжмитe Enter. чтобы выйти.")