Run
import random seq = ['apple', 'banana', 'cherry', 'mango'] x = random.choices(seq) print(x)
Output