Skip to content
Snippets Groups Projects
Commit 6801258e authored by David Hrbáč's avatar David Hrbáč
Browse files

Removed unused script

parent ff5885e8
No related branches found
No related tags found
No related merge requests found
import csv
def get_data(filename):
'''function to read the data form the input csv file to use in the analysis'''
reader = [] # Just in case the file open fails
with open(filename, 'rb') as f:
reader = csv.reader(f,delimiter=',')
#returns all the data from the csv file in list form
#f.close() # May need to close the file when done
return list(reader) # only return the reader when you have finished.
your_list = []
your_list += get_data('modules-anselm.csv')
your_list += get_data('modules-salomon.csv')
#your_list += get_data('modules-salomon-uv.csv')
print your_list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment