0

例如,机器人发送“发给我你的名字”,“发给我你的姓氏”并将这些数据保存在两个变量中。我的语言是 python,我使用 Telepot 包来制作机器人

4

2 回答 2

1

看看这个链接。向下滚动查看示例。希望这可以帮助!

于 2017-08-05T13:51:27.263 回答
0

在 Telepot 包中:

import telepot
from telepot.loop import MessageLoop
import time
bot = telepot.Bot('my_token')
def handle(msg):
    content_type, chat_type, chat_id = telepot.glance(msg)
    send1 = bot.sendMessage(chat_id,'whats your name?')
    if send1:
        text1 = msg['text']
        print(text1)


MessageLoop(bot,handle).run_as_thread()
while 1:
    time.sleep(1)

text1 变量是问题“你叫什么名字?”的回复关联。

于 2017-08-12T13:42:51.667 回答