Strings naar hashes
Het object nlp is al voor je aangemaakt.
Deze oefening maakt deel uit van de cursus
Geavanceerde NLP met spaCy
Interactieve oefening met praktijkervaring
Probeer deze oefening door deze voorbeeldcode aan te vullen.
# 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)