csv dictreader to dictionary code example
Example: python dictionary to csv
import csv
csv_columns = ['word','matchin']
csv_file = "found.csv"
try:
with open(csv_file, 'w') as csvfile:
writer = csv.DictWriter(csvfile, fieldnames=csv_columns)
writer.writeheader()
for data in corpus:
writer.writerow(data)
except IOError:
print("I/O error")