使用random模块的shuffle方法打乱列表
import random lst = [1, 2, 3, 4, 5, 6] random.shuffle(lst) print(lst) # [6, 4, 2, 3, 1, 5]
注意:shuffle是对列表本身进行操作