📜  如何在 Numpy 中创建随机整数矩阵? - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:13.958000             🧑  作者: Mango

代码示例1
# importing numpy library
import numpy as np  
  
# random is a function, doing random sampling in numpy.
array = np.random.randint(10, size=(20))
  
# the array will be having 20 elements.
print(array)https://www.geeksforgeeks.org/how-to-create-a-matrix-of-random-integers-in-python/#:~:text=To%20create%20a%20matrix%20of%20random%20integers%20in%20Python%2C%20randint,cannot%20be%20predicted%20at%20hand.&text=Parameters%20%3A,be%20drawn%20from%20the%20distribution.