免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6683 | 回复: 1
打印 上一主题 下一主题

求解:try_except捕获ctrl+D和ctrl+C的异常的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-02-17 15:57 |只看该作者 |倒序浏览
本帖最后由 jasonjean 于 2011-02-17 15:59 编辑

代码内容:
#!/usr/bin/env python
while True:
        try:
                filename=raw_input('Enter the filename:')
                fobj=open(filename,'r')
        except (IOError,EOFError,KeyboardInterrupt),e:
                print str(e)
        else:
                break
for eachLines in fobj:
        print eachLines,
print fobj.closed
fobj.close()
print fobj.closed
期望是:当输入的文件无法正常打开,或者用户按下了ctrl+D,或ctrl+C,程序不会退出,且提示重新输入需要打开的文件名。

实际执行结果发现一个问题:
当按下了ctrl+D之后紧接着按Ctrl+C,则程序退出,如下:
# ./9-4-1.py
Enter the filename:                    #ctrl+C
Enter the filename:                    #ctrl+C
Enter the filename:                    #ctrl+D
Enter the filename:                    #ctrl+D
Enter the filename:Traceback (most recent call last):     #这里是ctrl+C,为何这个异常就没有捕捉到了呢???
  File "./9-4-1.py", line 4, in ?
    filename=raw_input('Enter the filename:')
KeyboardInterrupt

论坛徽章:
1
2015亚冠之西悉尼流浪者
日期:2015-05-28 16:30:37
2 [报告]
发表于 2014-07-07 17:22 |只看该作者
本帖最后由 tank064 于 2014-07-07 17:23 编辑

在外面再加一个try
  1. [benny@tbj-master iplist]$ python test.py
  2. Enter the filename:
  3. Enter the filename:
  4. Enter the filename:
  5. Enter the filename:
  6. Enter the filename:
  7. Enter the filename:
  8. Enter the filename:
  9. Enter the filename:test.py
  10. #!/usr/bin/env python

  11. import sys
  12. while True:
  13.     try:
  14.         try:
  15.             filename=raw_input('Enter the filename:')
  16.             fobj=open(filename,'r')
  17.             for line in fobj:
  18.                 sys.stdout.write(line)
  19.         except (IOError, EOFError, KeyboardInterrupt), e:
  20.             sys.stdout.write(str(e) + '\n')
  21.         else:
  22.             break
  23.     except (Exception, KeyboardInterrupt), e:
  24.         sys.stdout.write(str(e) + '\n')
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP