Pages for logged out editors learn more
from nltk.corpus import wordnet meanings = wordnet.synsets('woman') for m in meanings: print "===", m.name, "===" print m.definition print "\t* ".join(m.examples)