question = ('Напишешь 1?', 'Напишешь 2?', 'Напишешь 3?', )
answer= ('1', '2', '3', )
IDofQuestion = 0
print(question[IDofQuestion])
if input() == answer[IDofQuestion]:
print('Good')
IDofQuestion = IDofQuestion + 1
else:
print('Bad')
IDofQuestion = IDofQuestion + 1
def free_game(message):
if message.text == SQLighter.answer:
bot.send_message(message.chat.id, "Good")
bot.send_message(message.chat.id, SQLighter.question)
bot.register_next_step_handler(message, free_game)#Создаёт некий цикл, после ответа, оно занова запускает эту функцию, а так же пишет вопрос из базы данных
elif message.text == 'Прекратить игру':
bot.send_message(message.chat.id, 'Игра приостановлена.')#Так как тут нету register next step и тд., то оно автоматически переадресовывает на type_game
else:
bot.send_message(message.chat.id, "Bad")
bot.send_message(message.chat.id, SQLighter.question)
bot.register_next_step_handler(message, free_game)