如何在numpy 2d数组中存储列表?

时间:2012-02-10 15:11:14

标签: python list multidimensional-array numpy

如何在numpy 2d数组中存储列表?

import numpy  
A = numpy.empty([5,5], dtype=**?**)  

变量列表类型的dtype应该是什么?或者是否有不同的方式来实现这一点,我强烈认为会是这种情况。

1 个答案:

答案 0 :(得分:3)

我认为你想要的是:

>>> input = numpy.array(range(10))
>>> data = numpy.zeros((2,2), dtype=numpy.ndarray)
>>> data[1][1] = input
>>> data
    array([[0, 0],
          [0, [0 1 2 3 4 5 6 7 8 9]]], dtype=object)