1. 首页
  2. 数据库
  3. 其它
  4. 【示例】Pytho多线程threading模块

【示例】Pytho多线程threading模块

上传者: 2020-12-23 04:08:21上传 PDF文件 60.64KB 热度 17次
Python内置了 threading模块, 是对更底层的thread模块的封装。 内置方法见官方文档: threading – 基于线程的并行 多线程执行 #coding=utf-8 import threading import time def thread_test(): print("test.") time.sleep(1) if __name__ == "__main__": for i in range(5): t = threading.Thread(target=thread_test) t.start() #启动线程
用户评论