Как записать в переменную ответ от пользователя. В переменную age.
age = None
@bot.message_handler(commands=['start'])
def send_welcome(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
btn1 = types.KeyboardButton("17")
btn2 = types.KeyboardButton("18")
btn3 = types.KeyboardButton("19")
markup.add(btn1, btn2, btn3)
bot.send_message(message.chat.id, text="Привет, {0.first_name}! Сколько тебе лет?".format(message.from_user), reply_markup=markup)
@bot.message_handler(commands=['add'])
def send_welcome(message):
bot.reply_to(message, "Вам " + age + "лет")
bot.infinity_polling()