我在书中有这个例子,但它在我的 python 3.3 中不起作用
x = 'item found'
def search():
raise x or return
try:
search()
except x:
print('exception')
else:
print('no exception')
谁能告诉我为什么?
我在书中有这个例子,但它在我的 python 3.3 中不起作用
x = 'item found'
def search():
raise x or return
try:
search()
except x:
print('exception')
else:
print('no exception')
谁能告诉我为什么?