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.
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.