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
।
हालाँकि, जब मैं माइक्रोसॉफ्ट एक्सेल में परिणामी सीएसवी खोलता हूं, तो प्रत्येक रिकॉर्ड के बाद एक अतिरिक्त रिक्त रेखा होती है!
क्या इसे बनाने के लिए एक अतिरिक्त खाली लाइन नहीं है?