Skip to content

Instantly share code, notes, and snippets.

@shahzaibkhan
Created July 5, 2022 17:14
Show Gist options
  • Save shahzaibkhan/f2f5ddb2ce0f64164719fae3d1aef4a7 to your computer and use it in GitHub Desktop.
Save shahzaibkhan/f2f5ddb2ce0f64164719fae3d1aef4a7 to your computer and use it in GitHub Desktop.
spellchecker
from spellchecker import SpellChecker
spell = SpellChecker()
word = input("Enter your Word : ")
if word in spell:
print("Correct Spelling")
else:
print("Incorrect Spelling")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment