1。最近又开始学习爬虫了,重新点燃兴趣。
2。写下第一个爬虫小程序,慢慢完善,记录下自己的成长。
3。
from urllib import request
response=request.urlopen("https://mp.weixin.qq.com/cgi-bin/loginpage?t=wxm2-login&lang=zh_CN")
html=response.read()
html=html.decode("utf-8")
print(html)
Python爬虫入门一(记录点滴成长)
最新推荐文章于 2025-08-15 16:20:39 发布