import random x = list(range(1, 13)) random.seed(4) random.shuffle(x) print(x) random.seed()