python3以特定字符集读写文件的小例子

发布时间:2020-11-26编辑:脚本学堂
本文介绍下,在python3中,以特定的字符集读写文件的方法,分享一例代码,供大家学习参考。

本节内容:
按特定字符集读写文件

例子:
 

复制代码 代码示例:

>>> import codecs;
>>> out.close();
>>> out=codecs.open('test2.txt','w','utf-8');
>>> out.write("This is 测试写入中文,使用UTF-8字符集.");
>>> out.close();

>>> import codecs;
>>> out=codecs.open('test2.txt','r','utf-8');
>>> for line in out:
    print(line);
   
This is 测试写入中文,使用UTF-8字符集.
>>> out.close();

>>>查看更多python 教程