Skip to content
Snippets Groups Projects
Select Git revision
  • 54827c76477ce1e3268e1dbffbee4484b4a413c2
  • main default protected
2 results

TD2 Deep Learning.ipynb

Blame
  • Forked from Dellandrea Emmanuel / MOD_4_6-TD2
    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