1. 程式人生 > >爬取網頁的兩種方法(python3)

爬取網頁的兩種方法(python3)

'''一'''
import urllib.request
response=urllib.request.urlopen("http://www.baidu.com/")
html=response.read()
print(html.decode("utf8"))

'''二'''
import urllib.request
req=urllib.request.Request("http://www.baidu.com/")
response=urllib.request.urlopen(req)
the_page=response.read()
print(the_page.decode("utf8"))