I'm trying to check and see if a word is an English word. Not sure if this is the best way to do it, any advice? It doesn't want to work.
from nltk import wordnet
word_to_test = input("Please enter a word: ")
if not wordnet.synsets(word_to_test):
print("FALSE")
#not english word
else:
print("TRUE")