text
stringlengths 0
207
|
---|
text.similar("boy") |
text.similar("test") |
var1 = nltk.tag.str2tuple("SJCC/NNP") |
var1 |
var1[1] |
sentence = ''' |
The/DT classes/NNS are/VBP reopening/VBG from/IN 15th/CD March'2021/NNP in/IN St./NNP Joseph/NNP 's/POS College/NNP |
''' |
sentence |
abc = [nltk.tag.str2tuple(i) for i in sentence.split()] |
abc |
abc = [nltk.tag.str2tuple(i) for i in sentence.split()] |
abc |
nltk.corpus.brown.tagged_words() |
nltk.help.brown_tagset('AT') |
nltk.help.brown_tagset('NP-TL') |
nltk.corpus.indian.tagged_words() |
nltk.help.indian_tagset('SYM') |