读写文件的时候多加个参数,open('test.txt', 'r', encoding='utf-8')
文件头不再需要# coding: utf-8来指定文件编码
如果要在python2的py文件里面写中文,则必须要添加一行声明文件编码的注释,否则python2会默认使用ASCII编码。
f=open(test, "r", encoding='utf-8')
未完。。。。。
读写文件的时候多加个参数,open('test.txt', 'r', encoding='utf-8')
文件头不再需要# coding: utf-8来指定文件编码
如果要在python2的py文件里面写中文,则必须要添加一行声明文件编码的注释,否则python2会默认使用ASCII编码。
f=open(test, "r", encoding='utf-8')
未完。。。。。