List1 = ['3','1','2']
List2 = ['0','1','0']
List3 = ['string1','string2','string3']
我想做
if List1[i] > 3 and List2[i] = 0 # i = iterating through list1/2 at the same time and comparing them
print(List3[i]) # i = being the index number found when the if statement is met
#expected output = 'string1'