sampling with replacement random python code example
Example 1: sample 1 item from array python
import random
cakes = ['lemon', 'strawberry', 'chocolate']
random.choice(cakes)
# prints 1 randomly selected item from the collection of n items with
# the probability of selection as 1/n
Example 2: python choose sample from list with replacement
import random
random.choices(list, k = 4)