我在网上搜索过,但找不到任何东西。我需要做一个" echo"函数,其中人们键入.echo(将要回复的单词)和机器人读取它并将该单词发回两次。
我假设我必须使用某种分裂字符串?
https://github.com/KingInTheNorth/TeenBot/blob/master/TeenBot.py
def echo():
ircsock.send("PRIVMSG " + channel + "")
if ircmsg.find(":.echo") != -1:
ircmsg.find.split(":.echo")
我对此有不同的看法,但却无法想到任何事情。可悲的是,没有文件。顺便说一句:我是一个十几岁的初学者,因此名字叫TeenBot
感谢。