首先将文本转换为列表列表。那就可以解决问题了
解析部分:
lol = list(csv.reader(open('text.txt', 'rb'), delimiter='t'))
其余的可以通过索引查找完成:
d = dict()key = lol[6][0] # cell A7value = lol[6][3] # cell D7d[key] = value # add the entry to the dictionary ...
欢迎分享,转载请注明来源:内存溢出
首先将文本转换为列表列表。那就可以解决问题了
解析部分:
lol = list(csv.reader(open('text.txt', 'rb'), delimiter='t'))
其余的可以通过索引查找完成:
d = dict()key = lol[6][0] # cell A7value = lol[6][3] # cell D7d[key] = value # add the entry to the dictionary ...
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)