我在表单中的 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 = open('text.txt', 'r')
i=0
a0='';a1='';a2='';a3='';a4='';a5='';a6='';a7='';
for line in infile:
[a1[i],a2[i],a3[i],a4[i],a5[i],a6[i],a7[i],a8[i]] = line.split('\t')
i+=1
它说'str'对象不支持项目分配。
有小费吗?