对于异常,通常可以分为两类:一类是可以预知的异常,我们通常会用try...except....捕捉,第二类是未知的error,我们是无法预知的. try: code block except A: except A handle except: other except else: if no exception, excute here finally: code 对于try....except捕捉异常,如果在try中发生了异常,会在except中捕捉到,并处理.如果没有发生异常,会执行els…