![[Python]How to handle the exception in Python? [Python]How to handle the exception in Python?](https://image.shishitao.com:8440/aHR0cHM6Ly9ia3FzaW1nLmlrYWZhbi5jb20vdXBsb2FkL2NoYXRncHQtcy5wbmc%2FIQ%3D%3D.png?!?w=700&webp=1)
This post demonstrates how to use try clause to handle the exceptions
def test_exception(case=None):
print case
try:
if case is None:
raise ValueError("there is no value")
elif case == 1:
raise ImportError("can not import the module")
else:
raise MyException("this is the special error")
except MyException as e:
print e
print "this is my exception"
except ValueError as e:
print e
print "this is value error"
except Exception as e:
print "this is exception " class MyException(Exception):
pass if __name__ == "__main__":
#test_exception()
test_exception(1)