我試圖使用python編碼從UCS-2小端文件UTF8和我得到一個奇怪的錯誤。編碼「UCS-2小端」文件「utf-8」使用python錯誤
我正在使用的代碼:
file=open("C:/AAS01.txt", 'r', encoding='utf8')
lines = file.readlines()
file.close()
而且我發現了以下錯誤:
Traceback (most recent call last):
File "C:/Users/PycharmProjects/test.py", line 18, in <module>
main()
File "C:/Users/PycharmProjects/test.py", line 7, in main
lines = file.readlines()
File "C:\Python34\lib\codecs.py", line 319, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
我試圖使用的編解碼器的命令,也沒有工作... 任何想法我可以做什麼?
完美的作品,謝謝! – Rob