Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7938985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T22:57:42+00:00 2026-06-03T22:57:42+00:00

Why is it a bad idea to catch all exceptions in Python ? I

  • 0

Why is it a bad idea to catch all exceptions in Python ?

I understand that catching all exceptions using the except: clause will even catch the ‘special’ python exceptions: SystemExit, KeyboardInterrupt, and GeneratorExit. So why not just use a except Exception: clause to catch all exceptions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T22:57:44+00:00Added an answer on June 3, 2026 at 10:57 pm

    Because it’s terribly nonspecific and it doesn’t enable you to do anything interesting with the exception. Moreover, if you’re catching every exception there could be loads of exceptions that are happening that you don’t even know are happening (which could cause your application to fail without you really knowing why). You should be able to predict (either through reading documentation or experimentation) specifically which exceptions you need to handle and how to handle them, but if you’re blindly suppressing all of them from the beginning you’ll never know.

    So, by popular request, here’s an example. A programmer is writing Python code and she gets an IOError. Instead of investigating further, she decides to catch all exceptions:

    def foo():
        try:
            f = open("file.txt")
            lines = f.readlines()
            return lines[0]
        except:
            return None
    

    She doesn’t realize the issue in her ways: what if the file exists and is accessible, but it is empty? Then this code will raise an IndexError (since the list lines is empty). So she’ll spend hours wondering why she’s getting None back from this function when the file exists and isn’t locked without realizing something that would be obvious if she had been more specific in catching errors, which is that she’s accessing data that might not exist.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that in general it is a bad idea to start a new
Why is the catch(Exception) almost always a bad Idea?
Is it a bad idea to use printStackTrace() in Android Exceptions like this? }
I have read several times that using catch (Exception ex) { Logger.LogError(ex); } without
Why is it a bad idea to throw your own exceptions? found here
In my app Im using different open source libraries , that throws different exceptions
why (if at all) is this a bad idea ? class Program { static
Why is it a bad idea to have a ID in the URL in
Is this a bad idea? Private Class GH_DataStructureEnumerator(Of Q As Types.IGH_Goo) Implements IEnumerable(Of Q)
if this is a bad idea, how to allocate memory in the function?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.