利用python遍历文件夹里每个txt文件

利用python遍历文件夹里每个txt文件

需求:有一个文件夹,里面有很多txt文件,现在需要查看每个txt文件是否有关键词"boat",如果有,则计数加一,注意每个txt文件里面可能有多个"boat",但只计数一个。最后输出有几个txt文件里面有关键词"boat"
利用python遍历文件夹里每个txt文件

import os

def read_path(file_pathname):
    #遍历该目录下的所有图片文件
    a=0
    for filename in os.listdir(file_pathname):
        # print(r'E:\AI\ship/{0}'.format(filename))
        path=os.path.join(r'E:\AI\results/',filename)
        f=open(path,'r')
        lines = f.readlines()
        for lines in lines:
            if 'boat' in lines: # 关键词
                a +=1
                break
                
    print(a)

read_path(r"E:\AI\results/")
输出:
	1852
上一篇:Python读取txt文件查找对应内容并生成新文件


下一篇:git代码量统计