Given an object, how do I tell if it's a class, and a subclass of a given class Foo?
e.g.
class Bar(Foo):
pass
isinstance(Bar(), Foo) # => True
issubclass(Bar, Foo) # <--- how do I do that?
|
|
Given an object, how do I tell if it's a class, and a subclass of a given class Foo? e.g.
|
||||||||||||||
|
|
|
It works exactly as one would expect it to work...
If you want to know if an instance of a class derived from a given base class, you could use:
|
|||
|
|