這看起來像你想要什麼:
txt=open("nums.txt").read()
[[x for x in ilist if len(x) > 0] for ilist in map(lambda x : x.split("\n"),txt.split("\n\n"))]
[['1 2 3 4 5 6 7 8 ', '9 10 11 12 13 14 '], ['15 16 17 18 19 20', '21 22 23 24 25 26 27', '28 29 30 31 32 33 34 35 36 37'], ['39 40', '41 42']]
如果你想他們都爲整數,然後:
map (lambda x : map(lambda x :reduce (lambda z,y: z+[int(y)] if y.isdigit() else z,x.split(),[]),x),[[x for x in ilist if len(x) > 0] for ilist in map(lambda x : x.split("\n"),txt.split("\n\n"))])
這給O/P:
[[[1, 2, 3, 4, 5, 6, 7, 8], [9, 10, 11, 12, 13, 14]], [[15, 16, 17, 18, 19, 20], [21, 22, 23, 24, 25, 26, 27], [28, 29, 30, 31, 32, 33, 34, 35, 36, 37]], [[39, 40], [41, 42]]]
如果你做'分裂( '\ n \ n')'會發生什麼? –
我只是把所有的數字全部放在一個字符串中,並且'\ n'在其中。這很奇怪 – ekw95
讀取整個文件,然後像'filobj.read()split('\ n \ n')''split''\ n \ n')' –