Comment trouver 2 mots similaires dans Atext Python
words = sentence.split()
counts = {}
for word in words:
if word not in counts:
counts[word] = 0
counts[word] += 1
Energetic Eland