我想捕获除某人之外的所有异常,e.g. KeyboardInterrupt,
以下是我的代码的一部分:
try:
num = 70
while 1:
print 'hello %d' % num
sleep(0.1)
num += 1
a = 1/(num - 80)
except not KeyboardInterrupt:
print 'ctrl c'
save(num)
这没用。