3
我有兩個gzip文件,每個大約1Gb。我想同時讀入兩個文件,並將每個文件的第四行相互比較。有沒有更快的方式,然後這樣做?比較兩個gzip文件的每四行
import gzip
file1 = r"path\to\file1.gz"
file2 = r"path\to\file2.gz"
for idx, (line1, line2) in enumerate(zip(gzip.open(file1), gzip.open(file2)), start=1):
if not idx%4:
compare(line1, line2)