python error capture

Error inherited table: https://docs.python.org/zh-cn/3/library/exceptions.html#exception-hierarchy

Rookie Tutorial: https://www.runoob.com/python/python-exceptions.html

 

def function ():

      try:  

             Content ### correct output

      except error table in e:

              Output error output content ###

       finally:  

               Output must output the contents of ##

print ( 'END') ## must output

Guess you like

Origin www.cnblogs.com/wjbk/p/11257540.html