lets assume the following simple Object:
class Mock:
def __init__(self, name, age):
self.name = name
self.age = age
then I have a list with some Objects like this:
myList = [Mock("Dan", 34), Mock("Jack", 30), Mock("Oli", 23)...]
Is there some built-in feature where I can get all Mocks with an age of ie 30? Of course I can iterate myself over them and compare their ages, but something like
find(myList, age=30)
would be nice. Is there something like that?