在尝试获取令牌时,在页面摘要器模型中出现属性错误,但不断出现错误,似乎看不到任何错误。
def text():
for i in range(0,len(text_p)):
text += text_p[i].text
text = text.lower()
# tokenize the text
tokens =[t for t in text.split()]
print(tokens)
AttributeError跟踪(最近一次通话) 在()中 6 7#标记文本 ----> 8个标记= [t表示text.split()中的t 9个打印(令牌)
AttributeError:“函数”对象没有属性“拆分”
答案 0 :(得分:0)
您正在使用函数名称和变量名称作为“文本”
更改您的变量名称或函数名称