Class parent ():
def __ init__(self):
Self .value = " sookshamas"
def show (self):
Print ("self.value")
Class child(parent)
def __ init__(self)
self.value=" beyond knowing"
def show ( self):
Print (self.value)
What will be the output of this python code

Posted on by