Run
import random seq = ('apple', 'banana', 'mango') x = random.choice(seq) print(x)
Output