導航:首頁 > 編程語言 > python比較兩個文件內容

python比較兩個文件內容

發布時間:2022-09-27 12:17:32

python讀取兩個文件並且判斷是否一致

'''判斷兩個文件是否相同,如果不同請指出第幾行不相同'''def f1vsf2(name1,name2):
f1 = open(name1)
f2 = open(name2)
count = 1
msg=[] for line1 in f1:
line2 = f2.readline() if(line1!=line2):
msg.append("第%d行不一樣"%count)
count+=1
f1.close()
f2.close() return msg
isbool = Truewhile isbool:
fname1 = input("請輸入要比較的文件1路徑及文件名:") if fname1 =='': print("文件名不能請重新輸入") break;
fname2 = input("請輸入要比較的文件2路徑及文件名:") if fname2 =='': print("文件名不能請重新輸入") break;
result = f1vsf2(fname1,fname2) if len(result)==0: print("兩個文件完全一致") else: print("兩個文件共有【%d】行不同"%len(result)) for msg in result: print(msg)
isbool = False

② python怎麼兩兩查找多個文件相同內容

可以用 difflib庫,下面給一個例子,具體需求自己研究
假如在同一個目錄下有a.txt, b.txt 兩個文本文件
a.txt 內容是
aaa
bbb

b.txt內容是
aaa
ccc

import difflib

a = open('a.txt', 'U').readlines()
b = open('b.txt', 'U').readlines()
diff = difflib.ndiff(a, b)

sys.stdout.writelines(diff)

結果是:
aaa
- bbb+ ccc

③ python中怎麼快速比較2個文件中的內容

可以用 difflib庫,下面給一個例子,具體需求自己研究

假如在同一個目錄下有a.txt, b.txt 兩個文本文件

a.txt 內容是

aaa

bbb


b.txt內容是

aaa

ccc


importdifflib

a=open('a.txt','U').readlines()
b=open('b.txt','U').readlines()
diff=difflib.ndiff(a,b)

sys.stdout.writelines(diff)



結果是:

aaa

- bbb+ ccc

④ python 有沒有一個模塊可以比較兩個文本文件內容差異的而且可以只輸出差異的部分

difflib是python提供的比較序列(string list)差異的模塊。實現了三個類:
1>SequenceMatcher 任意類型序列的比較 (可以比較字元串)
2>Differ 對字元串進行比較
3>HtmlDiff 將比較結果輸出為html格式.

建議你使用SequenceMatcher比較器,給你個例子吧。


SequenceMatcher實例:

import difflib
from pprint import pprint
a = 'pythonclub.org is wonderful'
b = 'Pythonclub.org also wonderful'
s = difflib.SequenceMatcher(None, a, b)
print "s.get_matching_blocks():"
pprint(s.get_matching_blocks())
print
print "s.get_opcodes():"
for tag, i1, i2, j1, j2 in s.get_opcodes():
print ("%7s a[%d:%d] (%s) b[%d:%d] (%s)" % (tag, i1, i2, a[i1:i2], j1, j2, b[j1:j2]))

輸出為:
s.get_matching_blocks():
[(1, 1, 14), (16, 17, 1), (17, 19, 10), (27, 29, 0)]
s.get_opcodes():
replace a[0:1] (p) b[0:1] (P)
equal a[1:15] (ythonclub.org ) b[1:15] (ythonclub.org )
replace a[15:16] (i) b[15:17] (al)
equal a[16:17] (s) b[17:18] (s)
insert a[17:17] () b[18:19] (o)
equal a[17:27] ( wonderful) b[19:29] ( wonderful)


SequeceMatcher(None,a,b)創建序列比較對象,將以a作為參考標准進行
Sequecematcher(None,b,a)創建序列比較對象,將以b作為參考標准進行
a,b表示待比較的兩個序列,生成序列比較對象後,調用該對象的get_opcodes()方法,將返回一個元組(tag,i1,i2,j1,j2).tag表示序列分片的比較結果.i1,i2表示序列a的索引,j1,j2表示序列b的索引.
get_opcodes()返回元組(tag,i1,i2,j1,j2)的含義

⑤ python如何將兩個文件價中所有同名excel秋褲對比

使用xlrd和xlwt包,首先安裝這兩個包。定義contrast函數,測試contrast函數,把程序打包成exe文件。導入tkinter包,寫個函數用來選擇路徑,初始化變數,畫出UI界面,點擊對比按鈕後的函數。
接下來就是把這個py程序打包,使用pyinstaller這個包pipinstallpyinstaller。安裝成功之後,按鍵盤win+R打開運行,輸入cmd,回車運行。進入程序所在文件夾
因為有統計成員到會情況的任務,每次匯總時都很麻煩,需要一個個對應騰訊會議導出名單的成員,然後在總表上進行標記,所以就寫了本程序來減少統計的復雜度。

⑥ 用python依次比較2個文件夾內的JSON文件的差異

這里假設題目裡面提到的」單獨兩個JSON文件的比較方法「的函數是compare_two_files,它接受兩個文件的文件名作為參數。


from pathlib import Path

def compare_two_folders(from_folder, to_folder):

from_folder = Path(from_folder)

to_folder = Path(to_folder)

for json_file in from_folder.glob('*.json'):

json_file_name = json_file.name

json_file_to_compare = to_folder / f'a{json_file_name}'

compare_tow_files(json_file, json_file_to_compare)

⑦ python內兩個CSV文件數據比較。。。求大神解答!!

t=open('gzb.csv').readlines()
d=[[int(x)forxiny.split(',')]foryint[1:]]
t1=open('gzb1.csv').readlines()[1:]
d1=[[int(x)forxiny.split(',')[:-1]]foryint1]
o=[t1[i][-2]ifd1[i][1]-1<=d[i][1]<=d1[i][1]+1andd1[i][2]-1<=d[i][2]<=d1[i][2]+1else''foriinrange(len(t1))]
open('out.csv','w').writelines([t[0]]+[t[i+1].strip()+o[i]+' 'foriinrange(len(t)-1)])

我想問題中應該是閉區間,你給的是開區間,我按閉區間寫

⑧ Python比較兩個文件是否相同,倒數第二行不太明白

答: 確實是有道理的,在文件當中的第7行,實現的功能就是從第1個文件中取一個字元,而第8行是在第2個文件中取一行字元,那麼一個字元和一行字元比較肯定是不相等的呢,所以我覺得第7行那個for循環改一下,改成每次取一行,然後一行和一行比較當比較,結果不同時記錄下它的行號,得到最後的結果。

希望可以幫助到你!

⑨ 使用Python實現比較倆個文件的數據,不同的存在另一個文件里

這是我之前在excel中比較兩組不同數據的代碼,修改一下完全可以滿足你的要求。

#-*-coding:utf-8-*-
importxlrd
importxlwt
fromxlutils.import
importos,time
importoperator

path=r"E:xx"
#path=raw_input('InputPath:')
os.chdir(path)
print"CurrentWorkspace:%s"%os.getcwd()

#讀取excel工作表中數據為字典
#字典形式為:{代碼:地名}
defreadDictStandard():
#name_check=raw_input('CheckExcelName:')
filename=(name_check).decode('cp936')
data=xlrd.open_workbook(filename+'.xls',formatting_info=True)

table=data.sheet_by_index(0)
#table=data.sheet_by_name(u'di')
printtable.name

cellList_k=[]
cellList_v=[]
ncols=table.ncols
forcolinrange(0,ncols):
ifnot(col%2):
collist_k=table.col_values(col)
collist_v=table.col_values(col+1)
forcell_kincollist_k:
cellList_k.append(cell_k)
forcell_vincollist_v:
cellList_v.append(cell_v)

check=dict(zip(cellList_k,cellList_v))

num=0
forkeyincheck:
num+=1
#printstr(key),check[key]

print'%nitsincheckExcel'%num
print'-'*50
returncheck

defreadDictCheck():
#name_check=raw_input('CheckExcelName:')
filename=(name_check).decode('cp936')
data=xlrd.open_workbook(filename+'.xls',formatting_info=True)

table=data.sheet_by_index(0)
#table=data.sheet_by_name(u'sheet1')
printtable.name

cellList_k=[]
cellList_v=[]
ncols=table.ncols

collist_k=table.col_values(0)
collist_v=table.col_values(1)
forcell_kincollist_k:
cellList_k.append(cell_k)
forcell_vincollist_v:
cellList_v.append(cell_v)

check=dict(zip(cellList_k,cellList_v))

num=0
forkeyincheck:
num+=1
#printstr(key),check[key]

print'%nitsincheckExcel'%num
print'-'*50
returncheck

defcheckDict(check,standard):
num=0
forkinsorted(check.keys()):
ifknotinstandard.keys():
num+=1
printk,check[k]
elifcheck[k]!=standard[k]:
printk,check[k],standard[k]
num+=1
print'%dnumbersrecords'%num

defmain():
globalname_check
name_check=raw_input('CheckExcelName:')
check=readDictCheck()
name_check=raw_input('StandardExcelName:')
standard=readDictStandard()
time.sleep(1)
checkDict(check,standard)

if__name__=="__main__":
main()
print'-'*50

⑩ 如何用Python代碼實現自動比較兩個文件中的代

可以用 difflib庫,下面給一個例子,具體需求自己研究
假如在同一個目錄下有a.txt, b.txt 兩個文本文件
a.txt 內容是
aaa
bbb
b.txt內容是
aaa
ccc
1234567import difflib a = open('a.txt', 'U').readlines()b = open('b.txt', 'U').readlines()diff = difflib.ndiff(a, b) sys.stdout.writelines(diff)
結果是:
aaa
- bbb+ ccc

閱讀全文

與python比較兩個文件內容相關的資料

熱點內容
壓縮因子定義 瀏覽:967
cd命令進不了c盤怎麼辦 瀏覽:212
葯業公司招程序員嗎 瀏覽:973
毛選pdf 瀏覽:659
linuxexecl函數 瀏覽:727
程序員異地戀結果 瀏覽:374
剖切的命令 瀏覽:228
干什麼可以賺錢開我的世界伺服器 瀏覽:290
php備案號 瀏覽:990
php視頻水印 瀏覽:167
怎麼追程序員的女生 瀏覽:487
空調外壓縮機電容 瀏覽:79
怎麼將安卓變成win 瀏覽:459
手機文件管理在哪兒新建文件夾 瀏覽:724
加密ts視頻怎麼合並 瀏覽:775
php如何寫app介面 瀏覽:804
宇宙的琴弦pdf 瀏覽:396
js項目提成計算器程序員 瀏覽:944
pdf光子 瀏覽:834
自拍軟體文件夾名稱大全 瀏覽:328