Python中对数组集进行按行打乱shuffle的方法

时间:2022-10-05 17:13:41

如下所示:

?
1
2
3
4
5
import numpy as np
y1=np.random.randint(2,10,(5,3))
print ("排序列表:", y1)
np.random.shuffle(y1)
print ("随机排序列表:", y1)

以上这篇Python中对数组集进行按行打乱shuffle的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/zsc201825/article/details/81707034