Buttons available only in inline keyboards:
keyboardButtonUrl - Open the URL, showing a "Do you want to open this URL?" prompt (unless the URL is one of the internal URIs, in which case the URL should be opened right away)
try:
comments_count = await client.get_discussion_replies_count(channel_id, message_id)
except Exception as e:
print(f'Ошибка при получении комментариев: {e}')
comments_count = 'Комментарии выключены'
def easy_game(message):
usertext = message.text # Текст от пользователя = 'Запуск', взят из кнопки, поэтому сразу попадаем в блок else
bot.send_message(message.chat.id, random.choice(country_easy))
if usertext == ("Москва","Париж", "Арабские Эмираты"):
bot.send_message(message.chat.id, "Правильный ответ!")
bot.send_message(message.chat.id, random.choice(country_easy))
else:
bot.send_message(message.chat.id, "Неправильный ответ")