Whenever I try to open a .csv file with the python command fread = open(\'input.csv\', \'r\') it always opens the file with spaces between every single character.
fread = open(\'input.csv\', \'r\')
Isn't csv a simple txt file with values separated with comma. Just try to open it with a text editor to see if the file is correctly formed.