那怎么样才能让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作用域里,从而实现了需求。
那怎么样才能让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作用域里,从而实现了需求。
《Python Web入门视频教程》本节课程是由极客学院录制的,精简的讲述了python web框架开发的详细、以及好处等,会使用web框架时当一些基础工作不需要你操心的时候,工作起来会比较容易,这也是为什么框架在各个语言的开发者社区中变得如此流行的原因,你无法否认的是,拼装一个网页或是一个项目,比起不得不创建你自己的类或方法要容易的多。
WEB开发教程39867次浏览
© 2021 Python学习网 苏ICP备2021003149号-1