zoukankan      html  css  js  c++  java
  • Python 自定义异常练习

    这个版本应该是比较舒服的。。案例那个有点头疼。。

    #!/usr/bin/python
    
    class ShortInputException(Exception):
        def __init__(self,length,altease):
            Exception.__init__(self)
            self.length=length
            self.altease=altease
    
    try:
        s=raw_input('Enter->:')
        if len(s) < 3:
            raise ShortInputException(len(s),3)
    except ShortInputException,x:
        print 'The Error:length < %d task: %d' % (x.length,x.altease)
    except:
        print 'No error'
  • 相关阅读:
    场景调研
    12.8
    12.7
    12.6
    12.5
    12.4
    12.3
    重启oracle数据库的操作方法
    oracle创建dblink方法
    SQL*Loader 详解
  • 原文地址:https://www.cnblogs.com/xiaoCon/p/2949086.html
Copyright © 2011-2022 走看看