''' 有个列表a = [1, 2, 3, 4, 5, 6, 7, 8, 9] 如何打乱列表a的顺序,每次得到⼀个⽆序列表 ''' import random a = [1, 2, 3, 4, 5, 6, 7, 8, 9] random.shuffle(a) print(a)