jenni /phennyircボット用の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'がありません