ComeçarComece de graça

Loading models

Let's start by loading a model. spacy is already imported.

Este exercício faz parte do curso

Advanced NLP with spaCy

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Load the 'en_core_web_sm' model – spaCy is already imported
nlp = ____

text = "It’s official: Apple is the first U.S. public company to reach a $1 trillion market value"

# Process the text
doc = ____

# Print the document text
print(____.____)
Editar e executar o código