What does it mean if a Python object is "subscriptable" or not?

python, terminology

Solution

It basically means that the object implements the `__getitem__()` method. In other words, it describes objects that are "containers", meaning they contain other objects. This includes strings, lists, tuples, and dictionaries.

Problem

Which types of objects fall into the domain of "subscriptable"?

Original source