I am uploading a csv file in utf-8 encoding (I set the encoding via notepad ++).
When you open the csv file and display the line, it shows this: Р ”Р” РёРЅР °: СтР° РЅРґР ° СЂС‚РЅС ‹Р№ (L)
should it: Length: Elongated (L)
with open("./xls/mainCSV_utf.csv") as f_obj: read_csv(f_obj) def read_csv(f_obj) reader = csv.DictReader(file_obj, delimiter=';') for line in reader: print(line["value"])