[SOLVED] Spacy – Convert Token type into list

Issue I have few elements which I got after performing operation in spacy having type Input – li = [‘India’, ‘Australia’, ‘Brazil’] for i in li: print(type(i)) Output: <class ‘spacy.tokens.token.Token’> <class ‘spacy.tokens.token.Token’> <class ‘spacy.tokens.token.Token’> I want to make all elements

Continue reading