Saeed Asked: 2024-02-04 03:32:48 +0800 CST2024-02-04 03:32:48 +0800 CST 2024-02-04 03:32:48 +0800 CST python 电报机器人对话机器人水平按钮而不是垂直按钮 772 在此示例中,它显示如下按钮: Number1ToChoose Number2ToChoose Number3ToChoose Number4ToChoose Number5ToChoose 当我要看到这个时: Number1ToChoose Number2ToChoose Number3ToChoose Number4ToChoose Number5ToChoose 到目前为止我还没有找到办法做到这一点。 python 1 个回答 Voted Best Answer Tim Roberts 2024-02-04T05:21:33+08:002024-02-04T05:21:33+08:00 恐怕你没有真正阅读文档或源代码。代码如下所示: async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: """Starts the conversation and asks the user about their gender.""" reply_keyboard = [["Boy", "Girl", "Other"]] 在文档中定义reply_keyboard为行列表。上面是一个包含一行三个按钮的列表。如果你将其更改为: reply_keyboard = [["Boy"],["Girl"],["Other"]] 然后您将得到三行,每行一个按钮。
恐怕你没有真正阅读文档或源代码。代码如下所示:
在文档中定义
reply_keyboard
为行列表。上面是一个包含一行三个按钮的列表。如果你将其更改为:然后您将得到三行,每行一个按钮。