我需要读取一个结构如下的文件:
1 2 3 4 5
6 7 8 9 10
11 22
13 14 15 16 17
18 19 20 21 22
23 24
我需要在单个数组中读取此文件 = [ 1,2,3, ... , 23, 24]
如何在 numpy 中做到这一点?使用:
Array = np.genfromtxt(pathToFile, dtype=float, skip_header=1, comments='/')
没用:
Line #796537 (got 2 columns instead of 5)