Source Code:
(back to article)
import random my_list = [1, 2, 3, 4, 5] random.shuffle(my_list) print(my_list)
Result:
Report an issue