需要在数千个文件中搜索特定的字符串/元数据、十六进制标签等,但我所做的这个 python 代码只搜索一个需要很长时间的文件
def check():
datafile = file('example.txt')
found = False
for line in datafile:
if blabla in line:
found = True
break
return found
found = check()
if found:
print "true"
else:
print "false"
有什么建议么?谢谢