我在 python 中创建了一个代码来搜索 document 中的一个单词。文档以字典形式存储,以“url”为键,内容为值。我想在执行搜索操作之前将文档的文本转换为小写。
def get_page(url):
if url in cache:
x=cache[url]
return x.lower()
else:
return None
我使用了这段代码。cache
是字典,url
是关键。但我得到这个错误......
Line 324: TypeError: Cannot call method 'tp$iter' of null
我认为这是一个可组合的字符串。
错误发生在这里,在第一行
for char in source:
if char in splitlist:
atsplit = True
source
x
与上面引用的函数相同。