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 199 views
1 answer 156 views
1 answer 191 views
1 answer 508 views
2 answers 194 views
194 views asked Apr 24, 2021 by avibootz
1 answer 148 views
148 views asked Aug 28, 2020 by avibootz
2 answers 196 views
...