how to choose multiple non repeated random elements from a list in python code example
Example: python random select no replace
import random
aList = [20, 40, 80, 100, 120]
print ("choosing 3 random items from a list using random.sample() function")
sampled_list = random.sample(aList, 3)
print(sampled_list)