热门
random.shuffle(lst): 随机打乱列表中的元素
import random lst = [1, 2, 3, 4, 5] random.shuffle(lst) print(lst)