创建多线程输出 hello 的代码
时间: 2024-04-22 09:27:51 浏览: 70
多线程helloword
4星 · 用户满意度95%
你可以使用 Python 的 threading 模块来创建多线程输出"hello"的代码。以下是一个示例:
```python
import threading
def print_hello():
print("hello")
# 创建并启动多个线程
threads = []
for _ in range(5):
t = threading.Thread(target=print_hello)
t.start()
threads.append(t)
# 等待所有线程完成
for t in threads:
t.join()
```
这段代码会创建五个线程,并且每个线程都会输出"hello"。通过调用 join() 方法,主线程会等待所有子线程执行完毕后再继续执行。这样就能够实现多线程输出"hello"的效果。
阅读全文