QuestenaPractice that shows what to review next
Question 118

Spot the identity-comparison pitfall: which warning is sound when two integers or strings should be compared by value?

  1. Equal literals are guaranteed to be one object.
  2. Identity is not a dependable general value comparison.Correct answer
  3. Current CPython makes identity stable for every value.
  4. Identity first converts both operands to a common type.

Explanation

Object reuse and interning can vary by value and execution context, so equal integers or strings are not guaranteed to share identity. Apparent success in one run is therefore not a stable contract for value comparison.

Continue with this test

Start practice
Question 118: Spot the identity-comparison pitfall: which warning is… · Python Fundamentals · Questena