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
I usually just do:
try: doSomething() except: _ = ""