For `data = dict(red=4)`, which expression is true because dictionary membership examines keys?
Explanation
The membership operator checks the dictionary's keys, making `red` a match and leaving the mapped value 4 irrelevant to this test. Searching values or both sides of each mapping would require a different expression.