How to append random values to deque in Python

1 Answer

0 votes
import collections
import random

d = collections.deque()

for i in range(5):         
    d.append(random.randint(0, 100))

print(d) 



'''
run:

deque([94, 34, 75, 1, 15])

'''

 



answered May 8, 2019 by avibootz

Related questions

1 answer 197 views
1 answer 155 views
1 answer 188 views
1 answer 507 views
2 answers 191 views
191 views asked Apr 24, 2021 by avibootz
1 answer 145 views
145 views asked Aug 28, 2020 by avibootz
2 answers 195 views
...