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

零基础学python-2.18 异常

时间:2017-05-16 23:21:48      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:nts   class   line   detail   for   hand   ext   and   tar   

这一节说一下异常except

继续沿用上一节的代码。我有益把文件名称字搞错。然后在结尾部分加上异常捕捉:

try:
    handler=open("12.txt")#在这里我特别将文件的名字搞错
    for eachLine in handler:
        print(eachLine,end=‘‘)
    handler.close()
except IOError as e:
    print(e)

    

 

他会出现报错的内容:

技术分享

 

python本身包括了非常多异常,我们将会后面具体展开

 

就讲到这里。谢谢大家

------------------------------------------------------------------

点击跳转零基础学python-文件夹

 

 

 

 

零基础学python-2.18 异常

标签:nts   class   line   detail   for   hand   ext   and   tar   

原文地址:http://www.cnblogs.com/lxjshuju/p/6863866.html

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