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

正在做网页爬虫,得到许多注入下列变量code的字符,想尝试将他们转换为utf-8的string输出到文件里,转换不成功,问题如下。
#Python3.4.0
#coding:utf-8
importos
code='\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()
函数式编程
浏览 400回答 2
2回答

holdtom

已经是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()
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript