首页 > 代码库 > python异常处理

python异常处理

flag = 1while 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

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

 

python异常处理