强制退出程序 强制退出程序键

题目:【强制退出程序 强制退出程序键】在一个死循环中,不使用return、break的情况下,强制退出程序 。
#python #结束进程 #多线程
视频教程:Python入门题039:退出程序(5种方法)
代码1:
import osimport sysimport timedef stop():sys.exit()# quit()# exit()# raise SystemExit# os._exit(0)while True:print('hello')stop()time.sleep(.5)代码2:
import osimport sysimport timedef stop():# sys.exit()# quit()# exit()# raise SystemExitos._exit(0)while True:print('hello')try:stop()except SystemExit as e:print('接收到退出命令:', type(e))time.sleep(.5)代码3:
import osimport sysimport timeimport threadingdef stop():# sys.exit()# 退出线程# exit() # 退出线程# raise SystemExit # 退出线程# quit()# 退出线程os._exit(0)# 退出进程while True:print('hello')threading.Thread(target=stop).start()# stop()time.sleep(.5)