python----1
生活随笔
收集整理的這篇文章主要介紹了
python----1
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
'''
第一個示例:簡單的網頁爬蟲爬取豆瓣首頁
'''import urllib.request#網址
url = "http://www.douban.com/"#請求
request = urllib.request.Request(url)#爬取結果
response = urllib.request.urlopen(request)data = response.read()#設置解碼方式
data = data.decode('utf-8')#打印結果
print(data)#打印爬取網頁的各類信息print(type(response))
print(response.geturl())
print(response.info())
print(response.getcode())
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀
總結
以上是生活随笔為你收集整理的python----1的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring Aop----用idea实
- 下一篇: Lua table笔记