我解析.txt
这样的:
def parse_file(src):
for line in src.readlines():
if re.search('SecId', line):
continue
else:
cols = line.split(',')
Time = cols[4]
output_file.write('{}\n'.format(
Time))
我认为cols
是我可以使用索引的列表。虽然它成功地打印出我想要的正确结果,但存在一个超出范围的错误:
文件“./tdseq.py”,第 37 行,在 parse_file Time = cols[4] IndexError: list index out of range make: * [all] Error 1
我使用的数据:
I10.FE,--,xx,xxxx,13450,tt,tt,tt,33,22,22:33:44