我正在使用Python 2.7.8并且我有一个解析的脚本:
def parse():
with open('myfile.txt') as f:
.
.
.
Print l
myfile.txt有一个UNICODE编码。 如何向此脚本添加代码,以便将其作为ANSI读取myfile.txt?
答案 0 :(得分:2)
使用io解决了我的问题:
import io
def parse()
with io.open(path,'r',encoding='utf_16') as f:
.....
解决了我的问题。