在java中,打乱list使用collections.shuffle()方法来实现的,
python中要利用random模块中的shuffle方法
import random
x = [i for i in range(5)]
print(x)
random.shuffle(x)