from abc import *
Class Teacher (self)
def schoolname (self):
Print ("I teach at GMIT")
def teach(self):
" "
Class CTeacher (Teacher):
def teach(self):
Print("I teach c")
t=Cteach()
t teach()
t.schoolname()
What is the output of this python code

Posted on by