e.g.
try: foo() bar() except: pass
When foo function raise an exception, how to skip to the next line (bar) and execute it?
That is not the intended way for try/except blocks to be used. If bar() should be executed even if foo() fails, you should put each in its own try/except block:
bar()
foo()
try: foo() except: pass # or whatever try: bar() except: pass # or whatever