Run
import random seq = [2, 3, 5, 7, 11] x = random.choice(seq) print(x)
Output