标签:style blog http color io os ar 使用 for
1. python中的try{}catch{}
2. raise exception
3. try...except ... else..
4. finally块
python中的异常处理的keyword和c#中的是不同样的,python中使用try,except关键在来处理异常,例如以下:
2. raise excepption
python中假设在except中假设须要将异常又一次抛出能够使用keywordraise,类似于c#中的throwkeyword。
It is useful for code that must be executed if the try clause does not raise an exception
else块是说假设异常没有被抛出的情况下将被运行。
A finally clauseis always executed before leaving thetrystatement
finally块是一定会被运行的,不论异常是否产生。
标签:style blog http color io os ar 使用 for
原文地址:http://www.cnblogs.com/yxwkf/p/4034363.html