Okay so what I want is to use all of the array value and check if any of those make the statement true. Here is what I came up with:
testArray = [1532,1542,1151]
myArray = [2532,1897,1151,2654]
if testArray == any(myArray):
##Then checks what value made the statement true
I tried that but it doesn't work. So I hope you guys have any ideas on how to fix my problem. Thanks!