Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Queue and Stack

Stack:

append
pop

Queue:

append
pop(0)
from collections import deque

Stack

fruits.append(...)
fruits.pop()

Queue

fruits = deque()
fruits.append(...)
fruits.popleft()