try ... except...,好处是执行失败后,仍然可以继续运行

import requests
try:
a=requests.get("https:///www.baidu.com")
print('连接成功')
except:
print('连接失败')
print('go on runing')

posted on 2019-12-07 22:01  星空6  阅读(1218)  评论(0编辑  收藏  举报

导航