while True:
try:
m=input('Please input first namuber:')
n=input('Please input second namuber:')
res= m/n
#多个异常,建议此处使用Exception e;使用e打印详细异常信息
print 'wrong occurs:'
print e
#取消输入操作,引发raise自定义的异常
except KeyboardInterrupt:raise Exception ('---KeyboardInterrupt---')
#以下内容,不允许用户取消输入数据操作
#pass
else:
print 'Your score is:',res
break