Python - Classes and Object Lifecycle
What will be the output of this code?
class Cat:
legs = 4
c1 = Cat()
c2 = Cat()
c1.legs = 3
print(Cat.legs, c1.legs, c2.legs)