for i in range(0, len(A)):
    if A[i] > 30:
        print("Value" + str(A[i]) + " Index " + str(i) + " Table B Value " + str(B[i]) )
4
solved how to compare the list of numbers to a predefined value and output the index of that value
 
for i in range(0, len(A)):
    if A[i] > 30:
        print("Value" + str(A[i]) + " Index " + str(i) + " Table B Value " + str(B[i]) )
4
solved how to compare the list of numbers to a predefined value and output the index of that value