In python inheritance, we can usually inherit parent properties to the child class. However, I do not get the idea of inheriting within the same class. What does this mean?
class MyParentClass():
def __init__(self):
super(MyParentClass, self).__init__()