# coding=utf-8_
_author__ = "leaves"
# raise 可以引发异常
# raise Exception
# 捕获异常
try:
x = '10'
y = 0
print x / y
except ZeroDivisionError:
print "The second number can't be zero "
except TypeError:
print "That wasn't a number .was it"
try:
print 'A simple task'
except:
print 'What? Something went wrong'
else:
print 'Ah...It went as planned'
finally:
print 'I am the Last'
_author__ = "leaves"
# raise 可以引发异常
# raise Exception
# 捕获异常
try:
x = '10'
y = 0
print x / y
except ZeroDivisionError:
print "The second number can't be zero "
except TypeError:
print "That wasn't a number .was it"
try:
print 'A simple task'
except:
print 'What? Something went wrong'
else:
print 'Ah...It went as planned'
finally:
print 'I am the Last'