[Python]How to handle the exception in Python?

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)

 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章