Strings to hashes
The nlp
object has already been created for you.
Este exercício faz parte do curso
Advanced NLP with spaCy
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Look up the hash for the word "cat"
cat_hash = ____.____.____[____]
print(cat_hash)
# Look up the cat_hash to get the string
cat_string = ____.____.____[____]
print(cat_string)