Python - Class Methods and Static Methods
What will be the output of the following code?
class Dog:
species = 'Canine'
@classmethod
def get_species(cls):
return cls.species
print(Dog.get_species())