How to get random.sample() from deque in Python

1 Answer

0 votes
import collections     
import random
 
dq = collections.deque(range(10))   
print(dq) 
 
rs = random.sample(dq, 5)
print(rs)


'''
run:
 
deque([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
[1, 6, 8, 9, 2]
 
'''

 



answered May 8, 2019 by avibootz

Related questions

1 answer 158 views
1 answer 143 views
2 answers 196 views
1 answer 167 views
1 answer 179 views
1 answer 168 views
...