摘要: try: passexcept Exception:#捕捉异常 passelse:#无异常时执行 passfinally:#无论对错都会执行 pass #自定义错误class EgonException(BaseException): def __init__(self,msg): self.msg 阅读全文