Inheritance:
class Daughter_class_name(Mother_class_name):
__Variable5 = Value5
...
def __init__(self, Variable1,..., Variable5)
self.__Variable5 = Variable5
super(Daughter_class_name, self).__init(Variable1,...) #superclass
def set_Variable1(self, Variable1)
self.__Variable1 = Variable1
def get_Variable1(self)
return self.__Variable1
def to String(self):
return "{}...{}...".format(self.__variable1,...,self.__variable5)