Event可以用于线程间通信
可以用于通知某些线程在什么时候开始任务
event = Event()
被通知 event.wait()(wait()可以加参数,设置最多等待时间,过了就不等了)
通知 event.set()