e.g.
try: foo() bar() except: pass
When foo function raise an exception, how to skip to the next line (bar) and execute it?
Take bar() out of the try block:
bar()
try
try: foo() except: pass bar()
Btw., watch out with catch-all except clauses. Prefer to selectively catch the exceptions that you know you can handle/ignore.
except