python3写unicode编码到文件

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

import sys

#读取源文件内容支持中文 用的utf-8
f=open('be.txt','r',encoding='utf-8')
data=f.read()
f.close()
# 打印宽字节编码
print(data.encode('unicode_escape'))

# 写入内容
f = open('fe.txt','wb')
print(f.writable())
f.write(data.encode('unicode_escape'))
f.close()

 

转载于:https://my.oschina.net/9199771/blog/1829726

你可能感兴趣的:(python3写unicode编码到文件)