I am student doing my master thesis. As part of my thesis, I am working with python. I am reading a log file of .csv format and writing the ext
.csv
I have solved this issue by simply adding a parameter in open()
with open(filename, encoding = 'cp850') as csv_file: csv_reader = csv.reader(csv_file, delimiter=',')