Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- try:
- import Queue as prioridad
- except ImportError:
- import queue as prioridad
- def orden():
- Prioridades = prioridad.PriorityQueue()
- Prioridades.put((1, "Reloj"))
- Prioridades.put((2, "Teclado"))
- Prioridades.put((3, "Mouse"))
- Prioridades.put((4, "Impresora"))
- while not Prioridades.empty():
- print Prioridades.get(),
- print """
- Interrupcion de Hardware
- 1. Reloj
- 2. Teclado
- 3. Mouse
- 4. Impresora
- """
- AleatorioUno = input("Prioridad: ")
- AleatorioDos = input("Prioridad: ")
- AleatorioTres = input("Prioridad: ")
- AleatorioCuatro = input("Prioridad: ")
- if AleatorioUno >=5:
- print "Usaste un valor invalido en el input 1"
- if AleatorioDos >=5:
- print "Usaste un valor invalido en el input 2"
- if AleatorioTres >=5:
- print "Usaste un valor invalido en el input 3"
- if AleatorioCuatro >=5:
- print "Usaste un valor invalido en el input 4"
- elif AleatorioUno or AleatorioDos or AleatorioTres or AleatorioCuatro <=4:
- print orden()
- print (("Orden Ingresado: ", AleatorioUno, AleatorioDos, AleatorioTres, AleatorioCuatro))
Add Comment
Please, Sign In to add comment