If `data = dict(a=1)`, what happens when `data["b"]` is evaluated?
Explanation
Subscription requires the requested key to exist, and `b` has no mapping in this dictionary, so lookup raises `KeyError`. It neither returns `None` nor inserts a default entry as a side effect.