ComenzarEmpieza gratis

Identifying people mentioned in a news article

In this exercise, you have been given an excerpt from a news article published in TechCrunch. Your task is to write a function find_people that identifies the names of people that have been mentioned in a particular piece of text. You will then use find_people to identify the people of interest in the article.

The article is available as the string tc and has been printed to the console. The required spacy model has also been already loaded as nlp.

Este ejercicio forma parte del curso

Feature Engineering for NLP in Python

Ver curso

Instrucciones del ejercicio

  • Create a Doc object for text.
  • Using list comprehension, loop through doc.ents and create a list of named entities whose label is PERSON.
  • Using find_persons(), print the people mentioned in tc.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

def find_persons(text):
  # Create Doc object
  doc = ___(___)
  
  # Identify the persons
  persons = [ent.____ for ent in doc.____ if ent.____ == 'PERSON']
  
  # Return persons
  return persons

print(____(____))
Editar y ejecutar código