Python多线程笔记(一)

Python中使用threading模块来实现多线程

threading提供一些常用的方法

threading.currentThread() 返回当前的线程变量 threading.enumerate() 返回一个正在运行的线程的list threading.activeCount() 返回正在运行的线程数量,与len(threading.enumerate()) 有相同的结果。 threading.TIMEOUT_MAX 设置threading全局超时时间。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyyfsx.html