自學Python爬蟲

自學Python爬蟲 本文主要用做學習python爬蟲的記錄。html 最簡單的頁面採集 #coding:utf-8 import urllib2 #導入urllib2模塊 html = urllib2.urlopen('http://www.baidu.com').read() print html 也能夠寫做 #coding:utf-8 import urllib2 url = urllib2
相關文章
相關標籤/搜索