Suppose class `child` inherits from class `parent`, and `item` is a `child` instance. What does `isinstance(item, parent)` return?
Explanation
The check accepts instances of the named class and of its subclasses, so a `child` instance satisfies a test against `parent`. Requiring an exact class match would describe a direct `type` comparison, not `isinstance`.