标签:shuff cti port .sh int print nbsp shu 方法
在java中,打乱list使用collections.shuffle()方法来实现的,
python中要利用random模块中的shuffle方法
import random
x = [i for i in range(5)]
print(x)
random.shuffle(x)
print(x)
标签:shuff cti port .sh int print nbsp shu 方法
原文地址:https://www.cnblogs.com/amy7758/p/10894096.html