> Which DictReader? Do you mean the one in the csv module? I will assume so. > yes.
> > # untested > with open(dfile, 'r', encoding='utf-8', errors='ignore', newline='') as f: > reader = csv.DictReader(f) > for row in reader: > print(row['fieldname']) > What you have seems to work, now I need to go find my strange symbols that are not 'utf-8' and see what happens I was thought, that I had to open with 'rb' to use encoding? Vincent Davis
-- https://mail.python.org/mailman/listinfo/python-list