random choice python list code example
Example 1: how to randomly choose from a list python
random.choice(name of list)
Example 2: choice random python
import random
#sampling with replacement
list = [20, 30, 40, 50 ,60, 70, 80]
sampling = random.choices(list, k=4)
print("Randomly selected multiple choices using random.choices() ", sampling)
Example 3: python random list
import random
randomlist = []
for i in range(0,5):
n = random.randint(1,30)
randomlist.append(n)
print(randomlist)