from threading import Thread, Conditioncondition = Condition()
current = "A"class ThreadA(Thread):
def run(self):
global current
for _ in range(10):
with condition:
while current != "A":
condition.wait()
print("A",end=" ")
current = "B"
condition.notify_all()class ThreadB(Thread):
def run(self):
global current
for _ in range(10):
with condition:
while current != "B":
condition.wait()
print("B",end=" ")
current = "C"
condition.notify_all()class ThreadC(Thread):
def run(self):
global current
for _ in range(10):
with condition:
while current != "C":
condition.wait()
print("C",end=", ")
current = "A"
condition.notify_all()a = ThreadA()
b = ThreadB()
c = ThreadC()a.start()
b.start()
c.start()a.join()
b.join()
c.join()
【Python|开3个线程按照顺序打印ABC 10次】输出:
A B C, A B C, A B C, A B C, A B C, A B C, A B C, A B C, A B C, A B C,
推荐阅读
- 推荐系统论文进阶|CTR预估 论文精读(十一)--Deep Interest Evolution Network(DIEN)
- Python专栏|数据分析的常规流程
- Python|Win10下 Python开发环境搭建(PyCharm + Anaconda) && 环境变量配置 && 常用工具安装配置
- Python绘制小红花
- Pytorch学习|sklearn-SVM 模型保存、交叉验证与网格搜索
- OpenCV|OpenCV-Python实战(18)——深度学习简介与入门示例
- python|8. 文件系统——文件的删除、移动、复制过程以及链接文件
- 爬虫|若想拿下爬虫大单,怎能不会逆向爬虫,价值过万的逆向爬虫教程限时分享
- 分布式|《Python3网络爬虫开发实战(第二版)》内容介绍
- java|微软认真聆听了开源 .NET 开发社区的炮轰( 通过CLI 支持 Hot Reload 功能)