次のエディターは、Python ファイル操作で特定の行を削除する例を示します。編集者はこれがとても良いものだと思ったので、皆さんの参考として今から共有します。編集者をフォローして見てみましょう
この執筆ループをスキップするには、Continue を使用してください
#文本内容 Yesterday when I was young 昨日当我年少轻狂 The tasting of life was sweet 生命的滋味是甜的 As rain upon my tongue tasting I lived by night and shunned the naked light of day tasting123 And only now I see how the time ran away tasting tasting
本文内の testing123 を削除してください
with open("fileread.txt","r",encoding="utf-8") as f: lines = f.readlines() #print(lines) with open("fileread.txt","w",encoding="utf-8") as f_w: for line in lines: if "tasting123" in line: continue f_w.write(line)
以上がPythonのファイル操作で特定の行を削除する方法を例で紹介します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。