QuestenaPractice that shows what to review next
Question 43

For `data = dict(red=4)`, which expression is true because dictionary membership examines keys?

  1. Only `4 in data`
  2. Both `"red" in data` and `4 in data`
  3. Only `"red" in data`Correct answer
  4. Neither expression, because membership is unsupported

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.

Continue with this test

Start practice
Question 43: For `data = dict(red=4)`, which expression is true because… · Python Fundamentals · Questena