44
我的源數據是在一個TSV文件,6列和大於2個百萬行。讀取和解析的TSV文件,然後操縱它保存爲CSV(*有效*)
這裏就是我試圖完成:
- 我需要在列3讀取數據(3,4,5)在這個源文件
- 第五欄是一個整數。我需要使用此整數值來複制使用第三列和第四列中的數據(按整數次數)的行條目。
- 我想將#2的輸出寫入CSV格式的輸出文件。
下面是我想出了。
我的問題:這是一種有效的方式做到這一點?在200萬行上嘗試時似乎可能是密集型的。
首先,我做了一個樣本標籤單獨的文件的工作,並把它稱爲「sample.txt的」。這是基本的和只有四行:
Row1_Column1 Row1-Column2 Row1-Column3 Row1-Column4 2 Row1-Column6
Row2_Column1 Row2-Column2 Row2-Column3 Row2-Column4 3 Row2-Column6
Row3_Column1 Row3-Column2 Row3-Column3 Row3-Column4 1 Row3-Column6
Row4_Column1 Row4-Column2 Row4-Column3 Row4-Column4 2 Row4-Column6
然後我有這樣的代碼:
import csv
with open('sample.txt','r') as tsv:
AoA = [line.strip().split('\t') for line in tsv]
for a in AoA:
count = int(a[4])
while count > 0:
with open('sample_new.csv','ab') as csvfile:
csvwriter = csv.writer(csvfile, delimiter=',')
csvwriter.writerow([a[2], a[3]])
count = count - 1
謝謝你,這是完美的。我會投票答覆,但不再有足夠的代表點。這就是我所要求的一個愚蠢的問題,首先被投票。 – CJH
@CJH:NP,今天已經達到了代表帽,所以對於我的聲譽來說,這不會有什麼不同。 :-) –
對不起,我的無知,但在最後一行的下劃線是什麼意思/做什麼? –