|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
import os
list2=[]
def search(name):
os.chdir(name)
list1=os.listdir()
for i in list1:
if '文本文档.txt' in i:
name1=os.path.join(os.getcwd(),i)
list2.append(name1)
if os.path.isdir(i):
name=os.path.join(os.getcwd(),i)
search(name)
os.chdir(os.pardir)
def exam(str1):
count2=0
for i in list2:
f1=open(i,'r',encoding = 'utf-8' )
if str1 in f1:
f1.close()
count1=0
f1=open(i,'r',encoding = 'utf-8' )
print('在文件【',i,'】中找到关键字【',str1,'】')
for eachline in f1:
list3=[]
count1=count1+1
if str1 in eachline:
begin=eachline.find(str1)
while begin != -1:
list3.append(begin+1)
begin=eachline.find(str1,begin+1)
print('关键字出现在第',count1,'行,第',list3,'个位置。')
f1.close()
str1=input("请将该脚本放于待查找的文件夹内,请输入关键字:")
search('G:\\新建文件夹 (4)')
exam(str1)
第一个文件内容为:
愿天下人愿
第二个文件的内容为:
愿望愿天下人愿
愿
愿
愿
然后程序运行的结果:
=====
请将该脚本放于待查找的文件夹内,请输入关键字:愿
在文件【 G:\新建文件夹 (4)\新建文件夹\新建文件夹\新建文本文档.txt 】中找到关键字【 愿 】
关键字出现在第 1 行,第 [1, 3, 7] 个位置。
关键字出现在第 2 行,第 [1] 个位置。
关键字出现在第 3 行,第 [1] 个位置。
关键字出现在第 4 行,第 [1] 个位置。
>>>
问题就是有一个文件没有进行读取
f1 是文件对象,你直接 in 肯定是 False 你应该 str1 in f1.read()
|
|