标签:try
语法:try:
try_suite
except Exception1: #只捕获特定的异常
suite1_exception1
except Exception2,e: #捕获所列的异常和其额外的数据
suite2_exception2
except (Exception3,Exception4): #捕获任何列出的异常
suite34_exception24
except (Exception5,Exception6 ......),e: #捕获任何列出的异常,并取得其额外数据
suite56_exception.....
........
except: #捕获所有(其他)异常类型
suite_exception
else: #如果没有引发异常,就运行
else_suite
finally: #总是会运行此代码块
finally_suite
标签:try
原文地址:http://blog.51cto.com/gavin0/2128645