Contact: aviboots(AT)netvision.net.il
41,578 questions
54,200 answers
573 users
import queue q = queue.LifoQueue() for i in range(7): q.put(i) while not q.empty(): print(q.get(), end=' ') ''' run: 6 5 4 3 2 1 0 '''