0
votes
2answers
346 views
Python CSV DictReader/Writer issues
I'm trying to extract a bunch of lines from a CSV file and write them into another, but I'm having some problems.
import csv
f = open("my_csv_file.csv", "r")
r = csv.DictReader(f, delimiter=',')
…
