正在做网页爬虫,得到许多注入下列变量code的字符,想尝试将他们转换为utf-8的string输出到文件里,转换不成功,问题如下。#Python3.4.0#coding:utf-8importoscode='\xe8\xb1\x86\xe7\x93\xa3'bytes=code.encode(encoding='utf-8')douban=str(bytes.decode('utf-8'))#print(str(bytes.decode('utf-8')))file_object=open('test.txt','w')file_object.write(douban)file_object.close()
2 回答
holdtom
TA贡献1805条经验 获得超10个赞
已经是utf-8了编码一次又解码一次做了跟没做有什么区别?#coding:utf-8importoscode=b'\xe8\xb1\x86\xe7\x93\xa3'code=code.decode('utf-8')file_object=open('test.txt','w',encoding="utf-8")file_object.write(code)file_object.close()
添加回答
举报
0/150
提交
取消