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