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 needed to ignore errors in multiple commands and fuckit did the trick
import fuckit @fuckit def helper(): print('before') 1/0 print('after1') 1/0 print('after2') helper()