Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

deque popleft in python

from collections import deque
word = deque(["a", "b", "c"])
print(word)
word.popleft()
print(word)
 
PREVIOUS NEXT
Tagged: #deque #popleft #python
ADD COMMENT
Topic
Name
3+9 =