mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-04-30 12:46:11 -04:00
14 lines
149 B
Python
Executable File
14 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)
|