理解python尝试catch else finally子句行为

理解python尝试catch else finally子句行为,第1张

概述Python 2.6.5(r265:79063,2012年10月1日,22:07:21) 我有这个: def f(): try: print "a" return except: print "b" else: print "c" finally: print "d"f() 这给出了: Python 2.6.5(r265:79063,2012年10月1日,22:07:21)

我有这个:

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 the try clause

Currently,control “flows off the end” except in the case of an exception or the execution of a return,continue,or break statement.

由于您从try块的主体返回,因此else将不会被执行.

总结

以上是内存溢出为你收集整理的理解python尝试catch else finally子句行为全部内容,希望文章能够帮你解决理解python尝试catch else finally子句行为所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1194679.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存