我試圖將分隔符添加到固定寬度文本文件。將分隔符添加到固定寬度文本文件
這是我迄今:
list=[4,29,36,45,70,95,100,111,115,140,150,151,152,153,169]
with open('output.txt', 'w') as outfile:
with open('input.txt', 'r') as infile:
for line in infile:
newline = line[:4] + '|' + line[4:]
outfile.write(newline)
outfile.close()
上面的代碼在第5字節插入管。我現在想在列表中的下一個值(29)上添加一個管道。我正在使用Python 2.7。
你的代碼中使用的變量「list」是如何的? – 2014-11-04 21:33:43
我認爲這不符合你的想法:'line [:4]'和'line [4:]' – KronoS 2014-11-04 21:34:30
尚未使用。 – swhit 2014-11-04 21:34:38