使用Numpy

时间:2017-12-02 22:40:51

标签: python numpy

我是python的新手。我想读取从文本文件到python数组的多个数组

[
    [
        [1 1] [1 1]
    ]
    [
        [2 2] [2 2]
    ]
    [
        [3 3] [3 3]
    ]
    ...
    ...
    ...
]

我试过这个,但似乎我对python

并不是很好
dt = np.dtype(None, 2, 2)
data = np.fromfile(fileName, dtype=dt)
print(data)

np.dtype我想告诉python该类型是一个未知大小的数组,包含每个包含两个整数的数组的数组

0 个答案:

没有答案