python代码:importurllib.requestresp=urllib.request.urlopen('http://www.baidu.com')html=resp.read()file_object=open("test.txt","w")file_object.write(html)file_object.close()报错:Traceback(mostrecentcalllast):File"D:\Code\Python\test\study.py",line6,infile_object.write(html)TypeError:mustbestr,notbytes
2 回答
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
python3.0跟2.7还是有挺大差别啊。难怪楼主发urllib.request没用过呢。。。平时写2.7,用的是urllib和urlrlib2库
添加回答
举报
0/150
提交
取消