CommencerCommencer gratuitement

Tokenize a string from GoT

A first standard step when working with text is to tokenize it, in other words, split a bigger string into individual strings, which are usually single words (tokens).

A string GoT has been created for you and it contains a quote from George R.R. Martin's Game of Thrones. Your task is to split it into individual tokens.

Cet exercice fait partie du cours

Sentiment Analysis in Python

Afficher le cours

Instructions

  • Import the word tokenizing function from nltk.
  • Transform the GoT string to word tokens.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Import the required function
from nltk import ____

# Transform the GoT string to word tokens
print(____(____))
Modifier et exécuter le code