在Python中使用Unicode字符转换字符串

时间:2016-08-27 14:36:05

标签: python python-3.x unicode

我有阅读一些文件的情况。

这是我目前的代码:

#Before this code no relevant to the problem
with open(path+r"\\"+file) as js:
    lines = js.readlines()
    for line in lines:
        if('"text" : ' in line):
            line = line.replace('"text" : ',"")
            for word in line.split():
                pass

Word已经是一个字符串,但是有一些字符串,比如'compa \ u00F1eras'应该是'compañeras'。我需要将Unicode字符更改为它们的表示形式(我正在使用西班牙语文本,因此我希望看到带有重音符号的字符,如á或ó)。

我该怎么办?

提前致谢。

0 个答案:

没有答案