私はすべての例外をキャッチしたいのですが、誰か、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)
それは動作しません。