Как найти 2 похожих слов в Atext Python
words = sentence.split()
counts = {}
for word in words:
if word not in counts:
counts[word] = 0
counts[word] += 1
Energetic Eland