search object in array python
def contains(list, filter):
    for x in list:
        if filter(x):
            return True
    return False
if contains(myList, lambda x: x.n == 3)  # True if any element has .n==3
    # do stuff
                                
                            search object in array python
def contains(list, filter):
    for x in list:
        if filter(x):
            return True
    return False
if contains(myList, lambda x: x.n == 3)  # True if any element has .n==3
    # do stuff
                                
                            Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us