从一个文件中,我取了一行,使用split()
. 但我必须将这些列写为输出文件中的制表符分隔值。
可以说我有l[1], l[2], l[3], l[4], l[5]
......总共5个条目。我怎样才能使用python实现这一点?而且,我无法将l[1], l[2], l[3], l[4], l[5]
值写入输出文件。
我尝试了这两个代码,都不起作用(我使用的是 python 2.6):
代码1:
with open('output', 'w'):
print l[1], l[2], l[3], l[4], l[5] > output
代码2:
with open('output', 'w') as outf:
outf.write(l[1], l[2], l[3], l[4], l[5])