Suppose I have two classes:
class A():
pass
class B():
pass
I have another class
class C(object):
def __init__(self, cond):
if cond ==True:
# class C initialize with class A
else:
# class C initialize with class B
If I inherit from A or B, by this implementation is it possible?
Chas no relationship to eitherAorB.__init__.