最佳答案
try:
r = requests.get(url, params={'s': thing})
except requests.ConnectionError, e:
print(e)
这对吗?有更好的方式来组织吗?这将涵盖我所有的基础吗?