我有一个python Telegram机器人,我想创建一个命令,让Bot向用户询问问题,然后Bot应将答案作为PM发送给我。现在我想知道如何获得答案/非命令性消息?
def Command(bot, update):
bot.send_message(chat_id=update.message.chat_id, text="How are you?")
bot.send.message(chat_id= <MY CHAT_ID>, text=update.message.text)
我这样尝试过,但是现在Bot给我发送了'/ Command input',而不是问题的答案。
答案 0 :(得分:0)