我是 Python 新手。这是我的代码:
import logging
logging.basicConfig(level = logging.DEBUG, format = "[%(levelname)s] (%(threadName)-10s) %(message)s")
import threading
import time
def thread1():
for i in range(0, 10, 2):
logging.debug(i)
time.sleep(1)
def thread2():
for i in range(10, 20):
logging.debug(i)
time.sleep(1)
t1 = threading.Thread(name = "thread1", target = thread1)
t1.setDaemon(True)
t1.start()
t2 = threading.Thread(name = "thread2", target = thread2)
t2.setDaemon(True)
t2.start()
当我复制代码并将其粘贴到 python 命令行提示符中时,我得到了以下结果。
如您所见,2 个线程已经完成,但程序似乎没有退出(我没有返回命令提示符)。我认为这与我没有属性结束线程的代码有关。真的吗?如何解决这个问题?谢谢。