标签: python multiprocessing
我有两个进程,如果一个完成,另一个应该被杀死。我对Python很新,所以我的第一个想法就是这样做:
while(p1.is_alive() and p2.is_alive()): time.sleep(1) p1.terminate() p2.terminate()
但这看起来很难看,还有更好的方法吗?