python读取⽂件筛选特定信息_使⽤python对多个txt⽂件中的
数据进⾏筛选的⽅法
⼀、问题描述
筛选出多个txt⽂件中需要的数据
⼆、数据准备
这是我⾃⼰建⽴的要处理的⽂件,⾥⾯是随意写的⼀些数字和字母
python怎么读取文件中的数据三、程序编写
import os
def eachFile(filepath):
pathDir =os.listdir(filepath) #遍历⽂件夹中的text
return pathDir
def readfile(name):
fopen=open(name,'r')
for lines adlines(): #按⾏读取text中的内容
lines = place("\n", "").split(",")
if 'aaa' in str(lines) and '2' not in str(lines):
#筛选出含有'aaa'并且不含数字2的每⼀⾏
print(lines)
fopen.close()
filePath = "C:\\Users\\Administrator\\Desktop\\123"
pathDir=eachFile(filePath)
for allDir in pathDir:
# child = os.path.join('%s%s' % (filepath, allDir))
child = "C:\\Users\\Administrator\\Desktop\\123" + '\\' + allDir
readfile(child)
以上只是利⽤if条件句对数据进⾏简单的筛选,可以⽤正则表达式做更复杂的数据筛选。
这篇使⽤python对多个txt⽂件中的数据进⾏筛选的⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持我们。
本⽂标题: 使⽤python对多个txt⽂件中的数据进⾏筛选的⽅法

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。