标签:osi lcd 条件 asm bit exce asa aaaaa wfs
我所说的处理错误的方法,其实是try:,except和raise这两种。
首先抛出一个实例,
dictt={‘a‘:1,‘b‘:2,‘c‘:3} try: if dictt[‘d‘]>1: #字典中没有‘d‘ print("right!") except KeyError: print("there is no ‘d‘")
该程序的运行结果:
there is no ‘d‘
而改为raise时,执行结果却是:
显然,由于‘f’是不存在的,所以if无法执行,导致raise也不能执行
两者(try:,except和raise)的区别:
前者,无论if中条件是什么,都可以运行,不报错;而后者,if中的条件要符合一定标准,不然raise运行不了。还有,raise会中断程序,显示红色的错误提示,而红色的提示正是raise中设定的。
总而言之,raise的使用一般具有实际意义。典型的用法:定义了一个接受多个参数的函数,而其中一个参数类型错误,此时用raise进行错误提示非常合适。
Example:
#实现两个整数的加法运算 def summ(add1,add2): if (type(add1))==type(1) and (type(add2))==type(1): return (add1+add2) else: raise TypeError("The two parameters should be integers")
标签:osi lcd 条件 asm bit exce asa aaaaa wfs
原文地址:http://www.cnblogs.com/louishuang2016928/p/6033355.html