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 168 views
1 answer 151 views
2 answers 206 views
1 answer 178 views
1 answer 189 views
1 answer 177 views
...