Answers for "try with multiple except python"

14

python catch multiple exceptions

except (IDontLikeYouException, YouAreBeingMeanException) as e:
    pass
Posted by: Guest on May-10-2020
2

try with multiple except python

try:
   ...
except FirstException:
   handle_first_one()

except SecondException:
   handle_second_one()

except (ThirdException, FourthException, FifthException) as e:
   handle_either_of_3rd_4th_or_5th()

except Exception:
   handle_all_other_exceptions()
Posted by: Guest on December-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language