私はクラスを使用しているpythonプログラムを作成しています。あるクラスが別のクラスから選択的に継承するだけにしたいです。
class X(object):
def __init__(self):
self.hello = 'hello'
class Y(object):
def __init__(self):
self.moo = 'moo'
class Z():
def __init__(self, mode):
if mode == 'Y':
# Class will now Inherit from Y
elif mode == 'X':
# Class will now Inherit for X
別のクラスを作成せずにこれを行うにはどうすればよいですか?