python 多线程运行多行代码
时间: 2023-07-06 09:41:26 浏览: 114
python多线程代码
如果你想要在 Python 中使用多线程运行多行代码,可以使用 `threading` 模块。下面是一个简单的示例代码:
```python
import threading
# 定义一个函数作为线程的执行体
def run(thread_id):
print(f"线程 {thread_id} 开始运行")
# TODO: 在这里编写需要运行的代码
print(f"线程 {thread_id} 运行结束")
# 创建多个线程并启动它们
for i in range(5):
thread = threading.Thread(target=run, args=(i,))
thread.start()
```
上述代码中,我们定义了一个 `run` 函数作为线程的执行体,然后使用 `threading.Thread` 类创建多个线程,并将 `run` 函数作为参数传递给该类的 `target` 参数。最后,使用 `start` 方法启动线程。在 `run` 函数中,你可以编写需要在多线程中运行的代码。
阅读全文