threading创建线程是哪个代码
时间: 2023-08-23 18:05:02 浏览: 73
python程序 创建多线程过程详解
使用Python的`threading`模块可以创建线程。下面是一个创建线程的示例代码:
```python
import threading
def worker():
"""线程函数"""
print("This is a worker thread.")
# 创建线程
t = threading.Thread(target=worker)
# 启动线程
t.start()
```
阅读全文