What is the output of the following code ?
class SuperClass:
def printme(self):
print('In SUPER class method')
class SubClass(SuperClass):
def printme(self):
print('In SUB class method')
SuperClass.printme(self)
p = SubClass()
p.printme()
Beginners can practice 300 + Python topic wise MCQ questions which will enhance the command on a particular topic. Experienced pythonistas can start testing their knowledge.
Code Snippets which helps in your project. Very much desirable for Python Professionals
Topic wise fundamental Python questions with answers which will clear your fundamentals and will help you in interviews