i want to write the program to examine word by using nltk corpus but i don't know why some word that nltk should have but it not.
this is my code.
import nltk
word = "women"
words = set(nltk.corpus.words.words())
if word in words:
print(word)
and the output is show nothing.