I am using a windows7 machine and I cannot figure out why Python 3 is writing this character at the end of each line ഀ
Here is my code:
import csv
input_file = open('7.15.16.txt', 'r')
output_file = open('no_commas1.csv', 'w')
for line in input_file:
line = line.replace(",", " ")
output_file.write(line)
output_file.close()
input_file.close()