Skip to content
Snippets Groups Projects
Select Git revision
  • b5a9c00f66700d637b348522b0a1ec6a1f010686
  • master default protected
2 results

graphe-liens.py

Blame
  • Forked from Vuillemot Romain / INF-TC1
    Source project has a limited visibility.
    test_lifoqueue.py 137 B
    import queue
    pile = queue.LifoQueue()
    
    for i in range(5): pile.put(i)
    
    while not pile.empty(): 
      print(pile.get(), end=" ")
    
    # 4 3 2 1 0