From 34d609cc884aeefb5fa79e3d2f14b0b2c7c8c17a Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Wed, 19 Mar 2014 20:48:23 -0400 Subject: [PATCH] Update read_csv_to_dict.py --- read_csv_to_dict.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/read_csv_to_dict.py b/read_csv_to_dict.py index beb90f1..363450b 100644 --- a/read_csv_to_dict.py +++ b/read_csv_to_dict.py @@ -1,9 +1,13 @@ # 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): + """ + 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, ...], ...} + + """ with open(csv_path, 'r') as in_csv: header = in_csv.readline().strip().split(',') data = {i:[] for i in header}