0
2つのテキストファイルがあります。1.txtは単語の辞書です。もう1つはフレーズの2.txtです。1.txtの一般的な単語を確認します。& 2.txtと私はそれらの一般的な言葉を第3の単語「説明する」と置き換えたい。2つのテキストファイルに共通の単語を第3の単語に置き換えます。
私は多くの方法でクラックを試みましたが失敗しました。いずれかは私に私が使用している
コードを助けることができます。このコード
wordsreplace = open("1.txt",'r')
with open("2.txt") as main:
words = main.read().split()
replaced = []
for y in words:
if y in wordreplace:
replaced.append(wordreplace[y])
else:
replaced.append(y)
text = ' '.join(replaced)
replaced = []
for y in words:
replacement = wordreplace.get(y, y)
replaced.append(replacement)
text = ' '.join(replaced)
text = ' '.join(wordreplace.get(y, y) for y in words)
new_main = open("2.txt", 'w')
new_main.write(text)
new_main.close()
を、2.txtを書き込みますが、私はいない言葉は、私はあなたのコード内の問題を指摘したくない
あなたがそのファイルの内容と予想される結果を投稿した方が良いでしょう – RomanPerekhrest