🔰 SIMPLE SPELLING CHECKER CODE IN PYTHON 🔰
.
#SHARE AND SUPPORT US
from textblob import TextBlob
sed = "importence"
print("WRONG SPELLINGS : " + str(sed))
hmm = TextBlob(sed)
print("CORRECTED : " + str(hmm.correct()))
You can improve it and can shape it as GUI application or can use sed = input("").
#SHARE AND SUPPORT US