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

Python学习-17.Python中的错误处理(二)

时间:2014-09-28 02:08:20      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   文件   sp   div   on   c   

错误是多种多样的,在 except 语句中,可以捕获指定的异常

修改代码如下:

 1 import io
 2 
 3 path = r
 4 mode = w
 5 
 6 try:
 7     file = open(path,mode)
 8     str = file.read()
 9     print(str)
10 except FileNotFoundError as e:
11     print(e)
12 except io.UnsupportedOperation as e:
13     print(e)
14 finally:
15     print(end)

那么,现在只有在 path 和 mode 都正确的情况下,才会输出文件内容,而错误的话,则会输出错误的信息。

Python学习-17.Python中的错误处理(二)

标签:style   blog   color   io   文件   sp   div   on   c   

原文地址:http://www.cnblogs.com/h82258652/p/3997434.html

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