I have a CSV file that looks like this in excel. I tried to get the data from this csv file. However, it will give me an error saying UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 15-16: invalid continuation byte. I tried to search it up online but couldn't find a solution for it. I've attached my code as well.
filename = "try.csv"
with open(filename,"r") as filedata:
csv_reader = reader(filedata)
print(csv_reader)
header = next(csv_reader)
temp = []
for sp in csv_reader:
temp.append(sp[0])
print(temp)