2021-05-09
Posted J哥。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-05-09相关的知识,希望对你有一定的参考价值。
第一个爬虫程序
from urllib.request import urlopen
url = "http://www.baidu.com"
resp = urlopen(url)
# resp.read().decode("utf-8") #decode 解码
# 保存
with open("mybaidu.html", mode='w', encoding='utf-8') as f :
f.write(resp.read().decode("utf-8"))
print('结束!!!')
以上是关于2021-05-09的主要内容,如果未能解决你的问题,请参考以下文章