My bot does not switch from one function to another

The bot stops at the start_game function, and nothing happens after it, although easy_game should go on.
The main task of my bot is for it to guess countries, and the user to guess the capital of this country. I have two questions.:

  1. Why does my penultimate function not go to the last one,
  2. How to process the user’s response
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import telebot
from telebot import types
from config import TOKEN
import random
bot = telebot.TeleBot(TOKEN)
country_easy={
'Москва': "Россия",
'Париж': "Франция",
"Абу-Даби": "Арабские Эмираты"
}
country_easy = ["Россия"]
@bot.message_handler(commands=['start'])
def start_messages(message):
bot.send_message(message.chat.id, 'Привет! Я бот-игра в столицы! Для начала игры введи /play')
@bot.message_handler(commands=['play'])
def play_message(message):
bot.send_message(message.chat.id, 'Выбирай сложность игры!')
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton("Easy")
btn2 = types.KeyboardButton("Medium")
btn3 = types.KeyboardButton("High")
markup.add(btn1, btn2,btn3)
bot.send_message(message.chat.id,
text="Нажимай на кнопку для выбора сложности:".format(
message.from_user), reply_markup=markup)
@bot.message_handler(content_types=["text"])
def easy(message):
if (message.text == "Easy"):
markup = types.ReplyKeyboardRemove()
bot.send_message(message.chat.id, "Хороший выбор, давай начнем игру!",reply_markup=markup)
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton("Запуск")
markup.add(btn1)
reply_markup = markup
msg = bot.send_message(message.chat.id, "Запускай игру!", reply_markup=markup)
bot.register_next_step_handler(msg, start_game)
@bot.message_handler(content_types=["text"])
def start_game(message):
if (message.text == "Запуск"):
bot.send_message(message.chat.id,"Игра запущена!")
markup = types.ReplyKeyboardRemove()
msg = bot.send_message(message.chat.id, "Какая столица у этой cтраны?", reply_markup=markup)
bot.register_next_step_handler(msg, easy_game)
def easy_game(message):
msg = bot.send_message(message.chat.id, random.choice(country_easy))
otvet = message.text
if otvet == ("Москва","Париж", "Арабские Эмираты"):
bot.send_message((message.chat.id,"Правильный ответ!"))
bot.send_message(message.chat.id, random.choice(country_easy))
else:
bot.send_message((message.chat.id, "Неправильный ответ!"))
if __name__ == '__main__':
bot.polling(none_stop=True)
</code>
<code>import telebot from telebot import types from config import TOKEN import random bot = telebot.TeleBot(TOKEN) country_easy={ 'Москва': "Россия", 'Париж': "Франция", "Абу-Даби": "Арабские Эмираты" } country_easy = ["Россия"] @bot.message_handler(commands=['start']) def start_messages(message): bot.send_message(message.chat.id, 'Привет! Я бот-игра в столицы! Для начала игры введи /play') @bot.message_handler(commands=['play']) def play_message(message): bot.send_message(message.chat.id, 'Выбирай сложность игры!') markup = types.ReplyKeyboardMarkup(resize_keyboard=True) btn1 = types.KeyboardButton("Easy") btn2 = types.KeyboardButton("Medium") btn3 = types.KeyboardButton("High") markup.add(btn1, btn2,btn3) bot.send_message(message.chat.id, text="Нажимай на кнопку для выбора сложности:".format( message.from_user), reply_markup=markup) @bot.message_handler(content_types=["text"]) def easy(message): if (message.text == "Easy"): markup = types.ReplyKeyboardRemove() bot.send_message(message.chat.id, "Хороший выбор, давай начнем игру!",reply_markup=markup) markup = types.ReplyKeyboardMarkup(resize_keyboard=True) btn1 = types.KeyboardButton("Запуск") markup.add(btn1) reply_markup = markup msg = bot.send_message(message.chat.id, "Запускай игру!", reply_markup=markup) bot.register_next_step_handler(msg, start_game) @bot.message_handler(content_types=["text"]) def start_game(message): if (message.text == "Запуск"): bot.send_message(message.chat.id,"Игра запущена!") markup = types.ReplyKeyboardRemove() msg = bot.send_message(message.chat.id, "Какая столица у этой cтраны?", reply_markup=markup) bot.register_next_step_handler(msg, easy_game) def easy_game(message): msg = bot.send_message(message.chat.id, random.choice(country_easy)) otvet = message.text if otvet == ("Москва","Париж", "Арабские Эмираты"): bot.send_message((message.chat.id,"Правильный ответ!")) bot.send_message(message.chat.id, random.choice(country_easy)) else: bot.send_message((message.chat.id, "Неправильный ответ!")) if __name__ == '__main__': bot.polling(none_stop=True) </code>
import telebot
from telebot import types
from config import TOKEN
import random


bot = telebot.TeleBot(TOKEN)

country_easy={
  'Москва': "Россия",
  'Париж': "Франция",
    "Абу-Даби": "Арабские Эмираты"
}
country_easy = ["Россия"]

@bot.message_handler(commands=['start'])
def start_messages(message):
    bot.send_message(message.chat.id, 'Привет! Я бот-игра в столицы! Для начала игры введи /play')

@bot.message_handler(commands=['play'])
def play_message(message):
    bot.send_message(message.chat.id, 'Выбирай сложность игры!')
    markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
    btn1 = types.KeyboardButton("Easy")
    btn2 = types.KeyboardButton("Medium")
    btn3 = types.KeyboardButton("High")
    markup.add(btn1, btn2,btn3)
    bot.send_message(message.chat.id,
                     text="Нажимай на кнопку для выбора сложности:".format(
                         message.from_user), reply_markup=markup)


@bot.message_handler(content_types=["text"])
def easy(message):
    if (message.text == "Easy"):
        markup = types.ReplyKeyboardRemove()
        bot.send_message(message.chat.id, "Хороший выбор, давай начнем игру!",reply_markup=markup)
        markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
        btn1 = types.KeyboardButton("Запуск")
        markup.add(btn1)
        reply_markup = markup
        msg = bot.send_message(message.chat.id, "Запускай игру!", reply_markup=markup)
        bot.register_next_step_handler(msg, start_game)

@bot.message_handler(content_types=["text"])
def start_game(message):
    if (message.text == "Запуск"):
        bot.send_message(message.chat.id,"Игра запущена!")
        markup = types.ReplyKeyboardRemove()
        msg = bot.send_message(message.chat.id, "Какая столица у этой cтраны?", reply_markup=markup)
        bot.register_next_step_handler(msg, easy_game)

def easy_game(message):
    msg = bot.send_message(message.chat.id, random.choice(country_easy))
    otvet = message.text
    if otvet == ("Москва","Париж", "Арабские Эмираты"):
        bot.send_message((message.chat.id,"Правильный ответ!"))
        bot.send_message(message.chat.id, random.choice(country_easy))
    else:
        bot.send_message((message.chat.id, "Неправильный ответ!"))


if __name__ == '__main__':
    bot.polling(none_stop=True)

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật