Python打印到文件不工作



我正在尝试执行这个脚本:

text_file = open("/Users/test/Test/test.txt", "r")
f = open('/Users/test/TEST/test2.txt','w')
list1 = text_file.readlines()
for item in list1:
    number=0
    while number < 7:
        string=str(item)+str(number)
        number = number + 1
        f.write(string)

test.txt文件包含:

a
b
c
d

打开test2时的预期输出:

a0
a1
a2
a3
a4
....(actual writing)
d6
实际输出:

a
0a
1a
2a
3a
4b
0b
1b
2b
3b
4c
0c
1c
2c
3c
4d0d1d2d3d4

到底是怎么回事?如有任何帮助,不胜感激

您忘记从item中剥离'n'了。使用str.rstrip

for item in list1:
    for number in xrange(7):
        string = item.rstrip() + str(number)
        f.write(string + 'n')

相关内容

  • 没有找到相关文章

最新更新