Skip to content

Instantly share code, notes, and snippets.

@makmac213
Created October 30, 2021 16:17
Show Gist options
  • Save makmac213/7398f60094ef2346c2f00662bf75f6d5 to your computer and use it in GitHub Desktop.
Save makmac213/7398f60094ef2346c2f00662bf75f6d5 to your computer and use it in GitHub Desktop.
Spellcheck using NLTK
from nltk.corpus import words
def spellcheck(w):
if w in words.words():
return True
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment