您好,登錄后才能下訂單哦!
這篇文章主要介紹怎么使用python讀取txt文件的內(nèi)容,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
python常用的庫:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
注意,本文代碼是使用在txt文檔上,同時(shí)txt文檔中的內(nèi)容每一行代表的是圖片的名字。
#coding:utf-8 import shutil readDir = "原文件絕對路經(jīng)" writeDir = "寫入文件的絕對路徑" #txtDir = "/home/fuxueping/Desktop/1" lines_seen = set() outfile=open(writeDir,"w") f = open(readDir,"r") for line in f: if line not in lines_seen: outfile.write(line) lines_seen.add(line) outfile.close() print "success"
最終結(jié)果在在寫入文件內(nèi)容中,沒有重復(fù)內(nèi)容。
以上是“怎么使用python讀取txt文件的內(nèi)容”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。