If `text = "cat"`, what type does the expression `text[1]` return?
Explanation
Indexing selects the one-character string `a`, whose type is still `str`. Python has no separate built-in character type here, and indexing text does not expose an integer code point.