Python--day40--threading模块的几个方法
阅读原文时间:2023年10月08日阅读:3

import time
import threading

#threading.get_ident() 查看当前进程号
def wahaha(n):
time.sleep(0.5)
print(n,threading.current_thread(),threading.get_ident())

for i in range(10):
threading.Thread(target=wahaha,args=(1,)).start()
#查看当前进程和线程之和的数 输出的结果是11,是因为还要加上主进程,10个子进程加上1个主进程等于11个进程
print(threading.active_count())
#threading.current_thread() 查看当前进程名和进程号
print(threading.current_thread())
#threading.enumerate()所有进程和线程对象,
# len(threading.enumerate())相当于threading.active_count()
print(threading.enumerate())

运行结果: