python指定写入文件时的编码格式方法

实例如下:

#encoding=utf-8
content=u"广东松炀再生资源股份有限"
content=content.encode("utf-8")#写入的文件编码格式为utf-8
with open("testbianma.txt","w")as f:
 f.write(content)

相关推荐