如何在 Python 中读写 unicode(UTF-8)文件?


现在推荐使用 io 模块,且其与 Python 3 的 open 语法兼容:以下代码用于在 Python 中读写 unicode(UTF-8) 文件

示例

import io
with io.open(filename,'r',encoding='utf8') as f:
    text = f.read()
# process Unicode text
with io.open(filename,'w',encoding='utf8') as f:
    f.write(text)

更新于: 20-Feb-2020

25K+ 浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告