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)
本文演示了如何使用try语句来捕获并处理不同类型的异常,包括自定义异常类和标准异常类。
748

被折叠的 条评论
为什么被折叠?



