Subscribe Us

Header Ads

Spelling Corrector Using Python

 hey guys in this video i am gonna tell you can create spelling corrector using python ...

you can use this program to correct your spelling and sentences.......


Source Code...

#required module  - pip install textblob
from textblob import TextBlob
#text that's spelling you want to  Correct  text = " Progamminggg withh priyansh "
#Textblob function Saprate  the words from spaces,special symbol correct = TextBlob(text)
#Correct method make the sentence correct Correct = correct.correct()
#printing the correct sentence print(Correct)


Post a Comment

0 Comments