我有这个:
def f(): try: print "a" return except: print "b" else: print "c" finally: print "d"f()
这给出了:
ad
而不是预期的
a c d
如果我评论退货,那么我会得到
a c d
我怎么记得python中的这种行为?
解决方法 如有疑问,请咨询 the docs:The optional
else
clause is executed if and when control flows off the end of thetry
clauseCurrently,control “flows off the end” except in the case of an exception or the execution of a
return
,continue
,orbreak
statement.
由于您从try块的主体返回,因此else将不会被执行.
总结以上是内存溢出为你收集整理的理解python尝试catch else finally子句行为全部内容,希望文章能够帮你解决理解python尝试catch else finally子句行为所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)