# -*- coding: utf-8 -*- import random #random.seed(123) print(random.randint(1, 2)) # [1..2] a = [1, 2, 3] random.shuffle(a) print(a)