spaCy - Token._ _len_ _ Method



This method is used to calculate the number of Unicode characters in the token.

Example

An example of Token._ _len_ _ method is as follows −

import spacy
nlp_model = spacy.load("en_core_web_sm")
doc = nlp_model("This is TutorialsPoint.com.")
token = doc[0]
len(token)

Output

4
spacy_container_token_class.htm
Advertisements