Run
import random # Take a list of numbers listA = [2, 8, 4, 3, 1, 5] # Shuffle the list random.shuffle(listA) print(listA)
Output