Created
June 29, 2021 22:16
-
-
Save Jamp/86a64a0a3fbe94344aed6f1a414f3283 to your computer and use it in GitHub Desktop.
Organizar la pea con la cola
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
queue = [] | |
queue.append(1) | |
queue.append(2) | |
queue.append(3) | |
queue.append(4) | |
queue.append(5) | |
print(queue) | |
number = queue.pop() | |
print(number) | |
queue.insert(0, number) | |
number = queue.pop() | |
print(number) | |
queue.insert(0, number) | |
number = queue.pop() | |
print(number) | |
queue.insert(0, number) | |
print(queue) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment