for i in range(3):
with open('1.txt', 'a') as file:
file.write('input')
text = 'input' # фраза, которая будет дописана в конец строки
output = '' # инициализация результирующего текста
with open('1.txt', 'r') as file:
for line in file: # считывание текущего файла
output += (line.replace('\n', '') + text + '\n')
with open('1.txt', 'w') as file:
file.write(output) # перезапись файла