简单的异常处理

简单的异常处理

代码

try:
    text = input('Enter someting -->')
except EOFError:   # 按ctrl+D
    print('Why did you do an EOF on me?')
except KeyboardInterrupt: # 按ctrl+C
    print('You cancelled the operation.')
else:
    print('You enterd {}'.format(text))

运行结果

Enter someting -->^D
Why did you do an EOF on me?
打赏
评论区
头像
文章目录