gpt4 book ai didi

python - Telegram Bot : customise buttons position on keyboard

转载 作者:行者123 更新时间:2023-11-30 22:35:35 29 4
gpt4 key购买 nike

有没有办法自定义键盘上的按钮位置?

示例:我们有

import telegram

def start(bot, update):

kb = [[telegram.KeyboardButton('/command1')],
[telegram.KeyboardButton('/command2')],
[telegram.KeyboardButton('/command3')]]
kb_markup = telegram.ReplyKeyboardMarkup(kb, resize_keyboard=True)

bot.send_message(chat_id=update.message.chat_id,
text="Welcome!",
reply_markup=kb_markup)

结果我们的键盘有 3 个按钮,每个按钮都在自己的行上。

我想在第一行有 2 个按钮,在第二行有 1 个按钮。可能吗?

最佳答案

是的,当然!

[[button1, button2],
[button3]]

整体列表中的每一行对应于知识库上的一行

关于python - Telegram Bot : customise buttons position on keyboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44524873/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com