You have the following starter code:
import nltk
from nltk.corpus import wordnet as wn
nltk.download('wordnet')
nltk.download('omw-1.4')
wn.synsets('society')[1]What is the hypernym of 'society'? Use the .hypernyms() method from the theory section to obtain the answer.