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
python保存網(wǎng)頁到本地出錯
qq_笑_17
2019-04-09 20:23:39