I have two lists,am trying to find the any element in lista is present in list,I know I can two forloops to do a match ,are there better ways to achieve this without two for loops
lista=['LA.BF.2.1']
listb=['LA.BF.2.1','LA.BF64.1.2.1','LA.BF64.1.1']
for element in lista:
for element in listb:
match