新手自学python,希望能给提高办公效率,写了一段很简单命令,用于批量搜索目录下所有docx文件是否存在关键词。
def SEARCH(path, keyword):
os.chdir(path)
file_list = os.listdir()
for i in range(len(file_list)):
exec('file_docx{}=Document(file_list[{}])'.format(i, i))
for i in range(len(file_list)):
exec('temp= file_docx{}'.format(i)) #循环读取
for j in range(len(temp.paragraphs)): #这里报错,temp is not defined 但是上一段明明就是定义temp,是不是因为和exec里需要输入引号有冲突?
value = temp.paragraphs[j].text.find(keyword)
if value != -1:
print(file_list[i] + "\n" + temp.paragraphs[j].text[value:]) #输出
?使用SEARCH(),就会报错。然而提前将path=“”和keyword=“”输入,直接把下面的代码复制进去执行,就可以很好的出结果。让我有些困惑,为何会出现这样的问题。新手小白真的挺像弄明白这个的,有不有大佬上来提携一下,求求了。
|