Python - Methods and Behavior Definition
What will be the output of this code?
class Box:
def __init__(self):
self.size = 5
def enlarge(self):
self.size += 3
b = Box()
b.enlarge()
print(b.size)