Ver originalfrom random import shufflel = range(10)#[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]shuffle(l)#[4, 6, 5, 2, 8, 7, 9, 0, 1, 3]