Python-异常

作者: 老生住长亭 | 来源:发表于2018-01-10 23:55 被阅读0次

    异常

    1、结构:

    try:

    except:

    else: // 没有异常时执行

    finally:

    2、创建异常

    异常什么都不做

    class DemoException(Exception):pass

    抛出点异常

    class ExceptionTest:

        def faulty(self):

            raise Exception("Her is something wrong")

        def ignore_exception(self):

            self.faulty()

        def handle_exception(self):

            try:

                self.faulty()

            except:

                # print("Handler Exception")

                raise

            else:

                print("handler exception don handler")

    3、异常对象捕捉

    raise

    相关文章

      网友评论

        本文标题:Python-异常

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