spaCy - Span._ _len_ _ Method



As name implies, this method of Span class will get the number of tokens in span.

Example

An example of Span._ _len_ _ method is given below −

import spacy
nlp_model = spacy.load("en_core_web_sm")
doc = nlp_model("This is Tutorialspoint.com.")
span = doc[1:4]
len(span)

Output

When you run the code, you will see the following output −

3
spacy_container_span_class.htm
Advertisements