Two distinct objects compare equal. If one is an element of `items`, what does `value in items` use to find it?
Explanation
List membership checks whether an element compares equal to the sought value, so distinct identity does not prevent a match. Testing indexes or requiring the exact same object would use criteria that `in` does not apply to lists.