我正在尝试执行此脚本:
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
发生什么事了? 任何帮助将不胜感激
答案 0 :(得分:3)
您忘了从'\n'
剥离item
。请使用str.rstrip
。
for item in list1:
for number in xrange(7):
string = item.rstrip() + str(number)
f.write(string + '\n')