我是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该类型是一个未知大小的数组,包含每个包含两个整数的数组的数组