長さ 4 のテキスト ドキュメント内のすべての単語を別の単語に置き換える必要があります。
たとえば、テキスト ドキュメントに「とても熱いスープを食べるのが好き」というフレーズが含まれている場合、「好き」、「とても」、「スープ」という単語は「何か」に置き換えられます。
次に、元のテキスト ドキュメントを上書きする代わりに、変更されたフレーズで新しいドキュメントを作成する必要があります。
これが私がこれまでに持っているものです:
def replacement():
o = open("file.txt","a") #file.txt will be the file containing the changed phrase
for line in open("y.txt"): #y.txt is the original file
line = line.replace("????","something") #see below
o.write(line + "\n")
o.close()
「????」を変えてみました のようなものに
(str(len(line) == 4)
しかし、それはうまくいきませんでした