猿问

将列表列表转换为numpy数组

在您将此问题标记为重复之前,请通篇阅读全文...

我有一个看起来像...的清单清单

>>> print(list_of_lists)
[[3, 3, 7, 8, 5], [9, 3, 3, 3, 3], [9, 10, 11, 3, 23, 3, 3], [20, 3, 3, 3, 3, 3, 3, 3], [20, 3, 3, 3, 3, 3, 3]]

我想将此列表列表转换为数组。但是,当我这样做时:

potential_numpy_array = numpy.array(list_of_lists)

或者:

potential_numpy_array = numpy.asarray(list_of_lists)

我得到一些陌生人:

>>> print(potential_numpy_array)
[list([3, 3, 17, 18, 16]) list([20, 3, 3, 3, 3]) list([20, 5, 6, 3, 12, 3, 3]) list([9, 3, 3, 3, 3, 3, 3, 3]) list([9, 3, 3, 3, 3, 3, 3])]

我看过许多其他问题,但没有找到可以解决此问题的答案。

有人可以帮我找出混乱的根源吗?


胡子哥哥
浏览 365回答 2
2回答

慕勒3428872

要创建一个numpy数组列表:np_arrays = []for array in arrays:    np_arrays.append(numpy.array(array))
随时随地看视频慕课网APP

相关分类

Python
我要回答