0
list1=['a','a']

list2=['b','bc']

list3=['c','cd']

for i in range(0,3):
    print("list"+str(i))

I tried this part but this was not working as expected.

Jakob F
  • 1,046
  • 10
  • 23
  • 1
    In what data structure do these list lie, have you just declared 50 individual lists seperatly? – Jakob F Jun 02 '21 at 14:13
  • You should not have 50 individual lists to begin with. This problem has its solution further up the code. – Ma0 Jun 02 '21 at 14:17
  • I have declared 14 lists according to the filter that needs to be applied under isin part of pandas filtering . so i need list to be under isin part using for loop – Lakshay Gupta Jun 02 '21 at 14:59

0 Answers0