Python · The collections Module
What does this print? ``` from collections import deque d = deque([1, 2, 3], maxlen=3) d.append(4) print(d) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
