How to select a random multiple elements from a list in Python

2 Answers

0 votes
lst = [11, 22, 33, 44, 55, 66, 77, 88, 99, 100, 123, 131, 145, 157]

import random

print(random.sample(lst, 9))




'''
run:

[55, 88, 131, 123, 22, 66, 99, 33, 145]

'''

 



answered Mar 4, 2023 by avibootz
edited Mar 4, 2023 by avibootz
0 votes
lst = [11, 22, 33, 44, 55, 66, 77, 88, 99, 100, 123, 131, 145, 157]

import random

print(random.choices(lst, k = 9))




'''
run:

[88, 88, 131, 33, 55, 66, 99, 99, 145]

'''

 



answered Mar 4, 2023 by avibootz
...