What I\'m trying to do:
I\'m trying to change the formatting on a csv file from space delimited to comma delimited.
What I\'ve don
The following will do
with open('filename_inCSV.csv',mode='r') as csvfile:
or
with open('filename_inCSV.csv','r') as csvfile: