Python - Classes and Object Lifecycle
What will be the output of this code?
class Dog:
species = "Canine"
dog1 = Dog()
dog2 = Dog()
Dog.species = "Wolf"
print(dog1.species)
print(dog2.species)