正常:
try:
something may go wrong...
except:
pass
else:
others func...
我需要什么:
try:
something may go wrong...
else:
others func...
是否存在“ try ... else”不存在的某些原因?
答案 0 :(得分:0)
如果支持,则语法
try:
something may go wrong...
else:
others func...
在行为上将完全等同于
something may go wrong...
others func...
即您不需要任何特殊的语法