您好,登錄后才能下訂單哦!
小編給大家分享一下怎么使用python對(duì)多個(gè)txt文件中的數(shù)據(jù)進(jìn)行篩選的方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
python常用的庫(kù):1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
一、問(wèn)題描述
篩選出多個(gè)txt文件中需要的數(shù)據(jù)
二、數(shù)據(jù)準(zhǔn)備
這是我自己建立的要處理的文件,里面是隨意寫(xiě)的一些數(shù)字和字母
三、程序編寫(xiě)
import os def eachFile(filepath): pathDir =os.listdir(filepath) #遍歷文件夾中的text return pathDir def readfile(name): fopen=open(name,'r') for lines in fopen.readlines(): #按行讀取text中的內(nèi)容 lines = lines.replace("\n", "").split(",") if 'aaa' in str(lines) and '2' not in str(lines): #篩選出含有'aaa'并且不含數(shù)字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)
看完了這篇文章,相信你對(duì)“怎么使用python對(duì)多個(gè)txt文件中的數(shù)據(jù)進(jìn)行篩選的方法”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。