# open the input file for reading and create a new output file for writing
readfile = open('input.txt', 'r')
writefile = open('newfile.txt', 'w')
# read each line in the input file
for line in readfile:
# remove the trailing carriage return
line = line.strip()
# write the prefix symbol, the input line, the postfix symbol,
# and a carriage return to the output file
writefile.write('(s)' + line + '(/s)' + '\n')
Конечно, это предполагает, что каждая строка является предложением.
Если строка может иметь более одного предложения или если предложение может занимать несколько строк, это становится намного сложнее.