#小练习 异常 分类: python异常 python 小练习 2013-05-14 13:35 452人阅读 评论(0) 收藏


while True:

    try:
        m=input('Please input first namuber:')
        n=input('Please input second namuber:')
        res= m/n


    #多个异常,建议此处使用Exception   e;使用e打印详细异常信息

    except (NameError,ValueError,EOFError,SyntaxError,ZeroDivisionError),e:
        print 'wrong occurs:'
        print e


    #取消输入操作,引发raise自定义的异常

    except KeyboardInterrupt:

        raise Exception ('---KeyboardInterrupt---')

        #以下内容,不允许用户取消输入数据操作

        #print 'you can`t cancel it,pleas enter a number'
        #pass
    else:
        print 'Your score is:',res
        break

版权声明:本文为博主原创文章,未经博主允许不得转载。

posted @ 2013-05-14 13:35  前行者2011  阅读(117)  评论(0编辑  收藏  举报