python3 random.choice code example
Example 1: random number generator in python
import random
a = random.randint(0,10)
print(random.randint(0,a))
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)