我需要這個排序輸出: /dir1NameWithSpaces/dir2NameWithSpaces/dir3NameWithSpaces/File1_04092008/es3.sml: some content .... with words and symbols
/dir1NameWithSpaces/dir2NameWithSpaces/dir3NameWithSpaces/File1_0
以下列格式給出製表符分隔文件,我需要按列方式執行操作。我知道的最簡單的解決方案是使用熊貓包,然而我的文件是兩個演出,我有閱讀困難。所以我決定使用普通的流媒體方法。 在這裏,我想動態生成列變量(列數爲〜500),其中每個列將存儲該特定列中的所有值,包括空格。例如: 變量a將列表[11,22,31,,42,555]。 a b c d e f
11 9 9 1 6
22 8 0 8 2
31 7
我在窗體中的txt文件中有數據。製表符分隔的數據 here
a b c
e f g
tere
x y z
w t y
我需要將列讀入列表。像 col1 = ['here', '', '', tere, '', '']
col2= ['', 'a', 'e', '', 'x'.'w']
等等。 我用 import re
infile = ope