Explore Library
Code QuizIntermediate

Character-Level Tokenization

Spot the error when splitting a word into characters.

Codepython
text = "hello"
chars = text.split("")

print(chars)

What is the bug in this character-level tokenizer?