try: risky_operation() except: handle_any_error()
try: risky_operation() except Exception as e: handle_expected_error(e)
try: risky_operation() except Exception as e: pass