たとえば、ボットは「Send me your name」、「Send me your last name」を送信し、このデータを 2 つの変数に保存します。私の言語は Python で、ボットを作成するためにテレポット パッケージを使用しました。
質問する
3254 次
2 に答える
0
テレポット パッケージ:
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 に答える