random sample python from list code example
Example 1: python choose sample from list with replacement
import random
random.choices(list, k = 4)
Example 2: random pick between given things python
import random
numberList = [111,222,333,444,555]
print("random item from list is: ", random.choice(numberList))