I have a list of objects. I would like to check some string if that string exists as a field value any object in the list. for example,
class Ani:
    name = ''
    def __init__(self, name):
        self.name = name
    def getName(self):
        return self.name
animal1 = Ani('alica')
animal2 = Ani('rex')
animal3 = Ani('bobik')
animal4 = Ani('dobik')
animal5 = Ani('sobik')
a = [animal1, animal2, animal3,animal4,animal5]
my problem to write a code in order to see if there is an object with given name. for example "chip".
 
     
     
     
    