1 2 3 4 5 6 7 8 9 10 11
colaLideres = Semaphore(0) colaSeguidores = Semaphore(0) # (...) def lider(): colaSeguidores.release() colaLideres.acquire() baila() def seguidor(): colaLideres.release() colaSeguidores.acquire() baila()