Python - Methods and Behavior Definition
Find the error in this code:
class B:
def start(self):
self.middle()
def middle(self):
self.end()
def end(self):
print('Done')
b = B()
b.middle()