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\')
Here's the quick and easy way, esp if python won't parse the input correctly
sed 's/ \(.\)/\1/g'