I\'m trying to get a Python 3 program to do some manipulations with a text file filled with information. However, when trying to read the file I get the following error:
Just to add in case file = open(filename, encoding="utf8") does not work try file = open(filename, errors='ignore')
file = open(filename, encoding="utf8")
file = open(filename, errors='ignore')