Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that I can do:

try:
    # do something that may fail
except:
    # do this if ANYTHING goes wrong

I can also do this:

try:
    # do something that may fail
except IDontLikeYourFaceException:
    # put on makeup or smile
except YouAreTooShortException:
    # stand on a ladder

But if I want to do the same thing inside two different exceptions, the best I can think of right now is to do this:

try:
    # do something that may fail
except IDontLIkeYouException:
    # say please
except YouAreBeingMeanException:
    # say please

Is there any way that I can do something like this (since the action to take in both exceptions is to say please):

try:
    # do something that may fail
except IDontLIkeYouException, YouAreBeingMeanException:
    # say please

Now this really won't work, as it matches the syntax for:

try:
    # do something that may fail
except Exception, e:
    # say please

so, my effort to catch the two distinct exceptions doesn't exactly come through.

Does anyone have any thoughts on how I can do this? or even if it's possible? I'm on python 2.7 if that makes a difference.

share|improve this question
9  
Great examples :) – Ry4an Sep 17 '12 at 2:57

1 Answer

up vote 296 down vote accepted

Enclose in parentheses:

except (IDontLIkeYouException, YouAreBeingMeanException) as e:
    pass

Separating the exception from the variable with a comma will still work in Python 2.6 and 2.7, but is now deprecated; now you should be using as.

share|improve this answer
1  
the 'as e:' is optional; if you don't want a reference to the exception object, you can leave it out. – frnknstn May 6 at 15:58
Thanks for the answer! FYI the error message can be quite helpful for debugging or logging: except ( FloatingPointError, ZeroDivisionError ) as e: repr( e ) # e.g. prints ZeroDivisionError( "divisor cannot be 0" ), whereas print str( e ) will only print "divisor cannot be 0" – foupfeiffer May 17 at 15:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.