When you just want to do a try-except without handling the exception, how do you do it in Python?
Is the following the right way to do it?
try: s
try: doSomething() except Exception: pass else: stuffDoneIf() TryClauseSucceeds()
FYI the else clause can go after all exceptions and will only be run if the code in the try doesn't cause an exception.