《Python基础教程》学习笔记之三:异常

时间:2022-08-30 23:53:02
while True:
try:
x = input('Enter the first number: ')
y = input('Enter the second number: ')
value = x/y
print 'x/y is', value

except ZeroDivitionError:
print 'You can't divide a number with zero!'

except Exception, e:
print 'Invalid input:', e
print 'Please try agiain'
else:
break

1. 使用while循环来保证获得有效输入

2. e是异常对象,用来记录异常现象,然后通过print语句显示给用户。由于 except Exception, e: 语句可以记录各种异常,因此不必逐条的写可能出现的异常处理语句。如果要对一些异常做相同的处理,可以使用此技巧。


异常处理语句有时可以替换if语句,提高程序性能。

if 'occupation' in person:
print 'Occupation:', person['occupation']

try:
print 'Occupation: ' + person['occupation']
except KeyError: pass

比较两条语句,第一条对字典person进行了两次查找,第二条只进行了一次查找。两条语句思想不同,一个是先保证存在,然后取值;另一个是先试着取值,出错了再说,"Leap Before You Look"。


raise ArithmeticError    
raise Exception('hyperdrive overload') ##括号内是错误信息
class SomeCustomException(Exception): pass ##创建异常

finally 用于在可能的异常后进行清理。