How to set deque to maximum length and append values in Python

1 Answer

0 votes
import collections     

d = collections.deque(maxlen=3)
print(d) 

d.append(34)
d.append(12)
d.append(7)
d.append(99)

print(d) 
print(d[0]) 
print(d[1]) 
print(d[2]) 
# print(d[3]) # IndexError: deque index out of range



'''
run:

deque([], maxlen=3)
deque([12, 7, 99], maxlen=3)
12
7
99

'''

 



answered May 8, 2019 by avibootz

Related questions

2 answers 295 views
1 answer 195 views
1 answer 149 views
1 answer 169 views
2 answers 188 views
188 views asked Apr 24, 2021 by avibootz
1 answer 179 views
...