QuestenaPractice that shows what to review next
Question 8

Which result pair is produced by `isinstance(True, int)` and `int(True)`?

  1. `False` and `0`
  2. `False` and `1`
  3. `True` and a TypeError
  4. `True` and `1`Correct answer

Explanation

Python defines `bool` as a subclass of `int`, and the true Boolean value has integer value 1 when converted. The claim that booleans are unrelated to integers overlooks that deliberate numeric relationship.

Continue with this test

Start practice
Question 8: Which result pair is produced by `isinstance(True, int)`… · Python Fundamentals · Questena