正在做网页爬虫,得到许多注入下列变量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()
holdtom
相关分类