Python - Classes and Object Lifecycle
What will be the output of this code?
class Cat:
def __init__(self, color):
self.color = color
c = Cat('black')
print(c.color)