What output is expected from the following code snippet?
A Lower instance is also an instance of its base class, Upper, so isinstance(Object, Upper) returns True. The subclass overrides method, so calling it returns lower.
Lower
Upper
isinstance(Object, Upper)
True
method
lower
Community Discussion