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

python异常处理

时间:2014-09-05 19:46:31      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   2014   art   

bubuko.com,布布扣
flag = 1
while 1:
    flag = flag + 1
    if flag > 10:
        break
    try:
        f = open("file-not-exists", "r")  
    except IOError,e:
        print("open exception: %s\n" %(e))  
    print "end while"
    
print "end"
View Code

bubuko.com,布布扣

可以看得到处理掉之后程序不会中间断掉

 

python异常处理

标签:style   blog   http   color   os   io   ar   2014   art   

原文地址:http://www.cnblogs.com/super-d2/p/3958591.html

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