美文网首页python百例
59-异常处理基础

59-异常处理基础

作者: 凯茜的老爸 | 来源:发表于2018-08-01 08:40 被阅读8次
    try:   # 把有可能发生异常的语句放到try里执行
        n = int(input("number: "))
        result = 100 / n
        print(result)
    except ValueError:
        print('invalid number')
    except ZeroDivisionError:
        print('0 not allowed')
    except KeyboardInterrupt:
        print('Bye-bye')
    except EOFError:
        print('Bye-bye')
    
    print('Done')
    

    相关文章

      网友评论

        本文标题:59-异常处理基础

        本文链接:https://www.haomeiwen.com/subject/noclvftx.html