为了账号安全,请及时绑定邮箱和手机立即绑定

python3 字符串,字节流的编码问题

python3 字符串,字节流的编码问题

函数式编程 2019-04-08 11:19:09
正在做网页爬虫,得到许多注入下列变量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-8
importos
code=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()
                            
查看完整回答
反对 回复 2019-04-08
  • 2 回答
  • 0 关注
  • 399 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信