try: 1 / 0 except Exception: pass
try: 1 / 0 except ZeroDivisionError: pass
Used when an except catches a too general exception, possibly burying unrelated errors.