Python - Encapsulation and Data Protection
What will be the result of executing this code?
class Animal:
def __init__(self):
self.__species = 'Cat'
pet = Animal()
print(pet.__species)