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 wording is just a bit vague. The file should be opened with newline='', but newline is not a valid option for csv.writer() itself.
newline=''
newline
csv.writer()