View entities of a list of docs:
doc = nlp("George Washington was the first president of the United States.")
for ent in doc.ents:
print("entity: ", ent.text, " : ", ent.label_)
doc = nlp("George Washington was the first president of the United States.")
for ent in doc.ents:
print("entity: ", ent.text, " : ", ent.label_)