Why this matters
Catching all exceptions with a broad `except:` block hides real issues, including unexpected errors. It can also prevent important exceptions like `KeyboardInterrupt` from stopping the program properly, making debugging more difficult. Always catch specific exceptions instead.