so I'm relatively new to this and I'd like some help.
So I'm trying to get the Wordnet in nltk to use the Open Multilingual WordNet. This is the page I've come to which shows how to do this http://www.nltk.org/howto/wordnet.html
The problem is when I try sorted(wn.langs())
I get this error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'WordNetCorpusReader' object has no attribute 'langs'
Since I'm using python 2.7 I know it would have to be sorted(wn.langs)
instead of sorted(wn.langs())
but either way get this error.
Can anyone please help me with this?