写文件报数据。
同样的编码。
含中文字段的输出文件 编码为utf-8
无中文的却是asc
import codecstxt = u”qwer”file=codecs.open(“test”,”w”,”utf-8-sig”)file.write(txt)file.close()
解决