在python中将Unicode转换为ANSI或UTF8

时间:2014-09-08 06:51:00

标签: python unicode utf-8 ansi

我正在使用Python 2.7.8并且我有一个解析的脚本:

def parse():
    with open('myfile.txt') as f:
.
.
.
Print l

myfile.txt有一个UNICODE编码。 如何向此脚本添加代码,以便将其作为ANSI读取myfile.txt?

1 个答案:

答案 0 :(得分:2)

使用io解决了我的问题:

import io    
def parse()
    with io.open(path,'r',encoding='utf_16') as f:
.....

解决了我的问题。