第一种是用urllib模块,下面是例示代码:
复制代码 代码如下:
import urllib
status=urllib.urlopen("http://www.jb51.net").code
print status
第二章是用requests模块,下面是例示代码:
复制代码 代码如下:
import requests
code=requests.get("http://www.jb51.net").status_code
print code
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8