Deque Popleft en Python

from collections import deque
word = deque(["a", "b", "c"])
print(word)
word.popleft()
print(word)
Excited Earthworm