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