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\')
The file is encoded in some unicode encoding, but you are reading it as ascii. Try to convert the file to ascii before using it in python.