码迷,mamicode.com
首页 > 编程语言 > 详细

Python Errors and Exceptions

时间:2014-10-19 11:32:07      阅读:228      评论:0      收藏:0      [点我收藏+]

标签: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块是一定会被运行的,不论异常是否产生。

具体页面:http://www.verydemo.com/demo_c122_i12332.html

Python Errors and Exceptions

标签:style   blog   http   color   io   os   ar   使用   for   

原文地址:http://www.cnblogs.com/yxwkf/p/4034363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!