final作用域的代码一定会被执行吗?

python

正常的情况下,finally作用域的代码一定会被执行的,不管是否发生异常。哪怕是调用了sys.exit函数,finally也是会被执行的。

那怎么样才能让finally代码不执行了。

import time

choice = True

try:

    if choice:

        while True:

            pass

    else:

        print "Please pull the plug on your computer sometime soon..."

        time.sleep(60 * 60 * 24 * 365)

finally:

    print "Finally ..."

上面的代码主要是通过让流程停滞在try作用域里,从而实现了需求。

以上是 final作用域的代码一定会被执行吗? 的全部内容, 来源链接: utcz.com/z/525066.html

回到顶部