Strings to hashes
The nlp
object has already been created for you.
This exercise is part of the course
Advanced NLP with spaCy
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# 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)