sicp-py-zh
sicp-py-zh copied to clipboard
wrong location code in 3.4 异常
trafficstars
handling a <class 'ZeroDivisionError'>
should below
>>>x
>>> try:
x = 1/0
except ZeroDivisionError as e:
print('handling a', type(e))
x = 0
handling a <class 'ZeroDivisionError'>
>>> x
0