我正在尝试为 jenni/phenny irc bot 制作 python 模块。
这是我的代码的一部分
def bp(jenni, input):
try:
text = input.group(2).encode('utf-8').split()
except:
jenni.reply("Please use correct syntax '.bp id weapons 7'. Available for weapons and food only")
if text[0].isstr() and text[1].isstr() and text[2].isdigit() and len(text) == 3 and text[1] == ('weapons' or 'food'):
url = 'http://someAPIurl/%s/%s/%s/1.xml?key=%s' % (text[0], text[1], text[2], key)
如果输入已经是str
为什么我会收到此错误?
AttributeError:“str”对象没有属性“isstr”