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

Python异常处理

时间:2015-03-16 11:06:12      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:python   异常   

python异常处理机制和java类似,采用try-except-finally的结构.

try-except检测异常

格式

try:
    try_statement
except (ErrorType1, ErrorType2),e:
    handle_statement
finally:
    finally_statement

实例

#!/usr/bin/python
try:
    a=12
    b=0
    c = a/b
except Exception, e:
    print  "Exception occurs: " , e
finally:
    print "finally handle!" 

上下文管理器(with…as…语句)

with语句可以特别适用于首先打开资源最后释放资源的场景,因为它会自动释放占有的资源,不需要显示地释放资源

格式

with context_expr [as var]:
    with_statement

raise引发异常

格式

raise Exception[, args] or raise Exception(args)

实例

raise Exception(‘exampleException’)

断言

检测程序的关键点,断言不成功的时候触发AssertError(断言错误)
格式如下

assert expression[, arguements]

Python异常处理

标签:python   异常   

原文地址:http://blog.csdn.net/csujiangyu/article/details/44301777

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