adj = ["red", "big", "tasty"]
fruits = ["apple", "banana", "cherry"]
for x in adj:
for y in fruits:
print(x, y)
I need to get the list as separate dynamically new list 1: ["red", "apple"] new list 2: ["big", "banana"] new list 3: ["tasty", "cherry"]. One problem here is list size will changed (adj,fruits)