访问数组的特定元素

时间:2019-10-13 03:18:07

标签: python

我不确定如何访问数组中的元素(数组?)。基本上,我需要能够为一系列数组分配随机数,但是我不确定索引的工作方式。

array_20 = np.zeros((5,10))
a = [[array_20]]*10
#This gives me 10 arrays of 5x10. I'd like to be able to then assign random
#numbers to all of the elements.

1 个答案:

答案 0 :(得分:0)

您可以像这样使用numpy.random.rand

text

然后您可以像Python列表一样索引inside。 (即$scope