mirror of
https://github.com/rasbt/python_reference.git
synced 2024-11-24 04:21:15 +00:00
csv to dict
This commit is contained in:
parent
4243b38bdc
commit
ca6688c735
14
read_csv_to_dict.py
Normal file
14
read_csv_to_dict.py
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Sebastian Raschka, 03/2014
|
||||||
|
# Read a csv file (with a header) into a dictionary
|
||||||
|
# where the dictionary structure will be
|
||||||
|
# {header_col1: [val1_line1, val1_line2, ...], header_col2: [val2_line1, val2_line2, ...], ...}
|
||||||
|
|
||||||
|
def read_csv(csv_path):
|
||||||
|
with open(csv_path, 'r') as in_csv:
|
||||||
|
header = in_csv.readline().strip().split(',')
|
||||||
|
data = {i:[] for i in header}
|
||||||
|
for line in in_csv:
|
||||||
|
line = line.strip().split(',')
|
||||||
|
for i in range(len(line)-1):
|
||||||
|
data[header[i]].append(line[1])
|
||||||
|
return data
|
Loading…
Reference in New Issue
Block a user