编写python线程实验,要求主线程循环输出hellworld,子线程循环输出“你好世界”
时间: 2023-05-04 20:01:37 浏览: 117
helloWorld:测试代码
可以使用以下代码实现:
```python
# 主线程
if __name__ == '__main__':
print("hello world")
# 创建子线程
def sub_thread():
print("你好世界")
t = threading.Thread(target=sub_thread)
t.start()
```
运行以上代码,结果会输出"hello world"和"你好世界"。
阅读全文