摘要: numpy打乱数组 import numpy as np list = [1, 2, 3, 4, 5] # 将 list 转为 numpy 数组 raw = np.array(list) print(raw) # 打乱numpy数组 index = np.random.permutation(raw 阅读全文
posted @ 2022-03-04 13:53 长乐未央丫 阅读(166) 评论(0) 推荐(0)