描述
shuffle() 方法将序列的所有元素随机排序。
shuffle() 方法的语法:
import random
list = [20, 16, 10, 5];
random.shuffle(list)
print ("随机排序列表 : ", list)
random.shuffle(list)
print ("随机排序列表 : ", list)
以上实例运行后输出结果为:
随机排序列表 : [20, 5, 16, 10]
随机排序列表 : [5, 20, 10, 16]