Skip to content

Commit 1bc6206

Browse files
committed
feat: Added Spell checker program
1 parent ccf7c72 commit 1bc6206

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Spell Checker/main.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from textblob import TextBlob
2+
3+
t = 1
4+
while t:
5+
a = input("Enter the word to be checked:- ")
6+
print("Original text: "+str(a))
7+
8+
b = TextBlob(a)
9+
print("Corrected text: "+str(b.correct()))
10+
t = int(input("Try Again? 1 : 0 "))

0 commit comments

Comments
 (0)