IRC 机器人类型错误 (python)

发布于 2024-10-31 18:35:55 字数 662 浏览 0 评论 0原文

  if data.find('!search') != -1:
     nick = data.split('!')[ 0 ].replace(':','')
     conn = httplib.HTTPConnection("www.md5.rednoize.com")
     conn.request("GET", "?q=" + arg) 
     response = conn.getresponse()
     data = response.read() 
     result = re.findall('<div id="result" >(.+?)</div', data)
     if result:
        sck.send('PRIVMSG ' + chan + result + '\r\n')
     else:
           sck.send('PRIVMSG ' + chan + " :" ' could not find the hash' + '\r\n')

当我运行此代码时,出现此错误:

conn.request("GET " + "?q=" + arg)
TypeError: cannot concatenate 'str' and 'list' objects

我该如何解决此问题?

  if data.find('!search') != -1:
     nick = data.split('!')[ 0 ].replace(':','')
     conn = httplib.HTTPConnection("www.md5.rednoize.com")
     conn.request("GET", "?q=" + arg) 
     response = conn.getresponse()
     data = response.read() 
     result = re.findall('<div id="result" >(.+?)</div', data)
     if result:
        sck.send('PRIVMSG ' + chan + result + '\r\n')
     else:
           sck.send('PRIVMSG ' + chan + " :" ' could not find the hash' + '\r\n')

When I run this code I get this error:

conn.request("GET " + "?q=" + arg)
TypeError: cannot concatenate 'str' and 'list' objects

How can I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝礼 2024-11-07 18:35:55

arg 从哪里来?你知道它应该包含什么吗?

arg 显然是一个列表,而不是一个字符串。尝试用 str(arg[0]) 替换 arg 并查看是否有效。

Where does arg come from? Do you know what it's supposed to contain?

arg is apparently a list, not a string. Try replacing arg with str(arg[0]) and see if that works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文