I write some files as .txt with python3.6 in mac. And then, when I try to read them using:
f = open(...,'r')
lines = f.readlines()
I got this error:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe8 in position 10: invalid continuation byte
Can anyone help? Thank you.