import random # there are 2 ways for this listofnum = [1, 2, 3, 4, 5] # 1 print(random.choice(listofnum)) # 2 random.shuffle(listofnum) print(listofnum)