import csv
with open('thefile.csv', 'rb') as f:
data = list(csv.reader(f))
import collections
counter = collections.defaultdict(int)
for row in data:
counter[row[10]] += 1
with open('/pythonwork/thefile_subset11.csv', 'w') as outfile:
writer = csv.writer(outfile)
for row in data:
if counter[row[10]] >= 504:
writer.writerow(row)
이 코드는를 읽고 thefile.csv
변경하며 결과를 씁니다 thefile_subset1
.
그러나 Microsoft Excel에서 결과 CSV를 열면 각 레코드 뒤에 빈 줄이 추가됩니다!
빈 줄을 넣지 않는 방법이 있습니까?