mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-02 06:46:18 -04:00
13 lines
149 B
Python
Executable file
13 lines
149 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
__author__ = "bt3"
|
|
|
|
import Queue
|
|
|
|
q = Queue.Queue()
|
|
|
|
for i in range(10):
|
|
q.put(i)
|
|
|
|
for i in range(10):
|
|
print q.get(i)
|