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

graph-similarite.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