#引入request,呼叫方法前面都是用request來呼叫
#python3把urllib和urllib2封裝了
from urllib
import request
#像指定**發請求
res=request.urlopen(
'')#用read()讀取響應內容,並且儲存到content裡面
content
=res.read()
#把響應內容寫入以二進位制方式寫入檔案裡面
with
open(
'a.html',
'wb')
as f:
f.write(content)
Python3 程式設計第一步
這個例子介紹了幾個新特徵。1.a,b b,a b 第一行包含了乙個復合賦值 變數 a 和 b 同時得到新值 0 和 1。最後一行再次使用了同樣的方法,可以看到,右邊的表示式會在賦值變動之前執行。右邊表示式的執行順序是從左往右的 2.end 關鍵字 關鍵字end可以用於將結果輸出到同一行,或者在輸出的...
爬蟲第一步
注意正規表示式的書寫注意正規表示式的書寫 import re import requests url headers html requests.get url,headers,timeout 10 text print html redata re.compile r for i in re.fi...
Python爬蟲 反爬蟲第一步
request urllib2.request headers headers response urllib2.urlopen request html response.read decode utf 8 print html print response.getcode response 是伺...