Python - Object-Oriented Programming Foundations
What will be the output of this Python code?
class Animal:
def __init__(self, species):
self.species = species
cat = Animal('Cat')
print(cat.species)