Answers for "copy a csv file into a dictionary python"

1

read csv and store in dictionary python

import csv

with open('coors.csv', mode='r') as infile:
    reader = csv.reader(infile)
    with open('coors_new.csv', mode='w') as outfile:
        writer = csv.writer(outfile)
        mydict = {rows[0]:rows[1] for rows in reader}
Posted by: Guest on August-28-2020
1

python create dictionary from csv

mydict = {y[0]: y[1] for y in [x.split(",") for x in open('file.csv').read().split('n') if x]}
Posted by: Guest on October-02-2020

Code answers related to "copy a csv file into a dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language