信号量
1 | import threading |
使用 with 语句会在它包围的代码块内获取关联的锁。 acquire() 和 release() 方法也能调用关联锁的相关方法。
https://docs.python.org/zh-cn/3.6/library/threading.html
https://docs.python.org/zh-cn/3.6/library/concurrency.html
ThreadPoolExecutor
1 | sem=threading.Semaphore(4) |