Python - Classes and Object Lifecycle
Identify the error in this code snippet:
class Cat:
def __init__(self, color):
self.color = color
kitty = Cat("black")
print(kitty[color])