「記事」の内容をテキストファイルに書き込んでいます。
ソースファイル:
lol hi
lol hello
lol text
lol test
Python:
for line in all_lines:
if line.startswith('lol '):
mystring = line.replace('lol ', '').lower().rstrip()
article = 'this is my saved file\n' + mystring + '\nthe end'
これは、txtファイルに保存されるものです。
this is my saved file
test
the end
これは私がtxtファイルに保存したいものです:
this is the saved file
hi
hello
test
text
the end