Python - Methods and Behavior Definition
What is the output of this code?
class A:
def first(self):
print('First')
self.second()
def second(self):
print('Second')
obj = A()
obj.first()