I'm new in Python and for my learning project, I need to create a list that each item from list1 should be combined with each list2 items. Thank you very much!
What I have:
list1=["red", "blue", "green", "yellow", "pink"]
list2=["apple", "orange", "tomato", "mango"]
What I need:
redapple
redorange
redtomato
redmango
blueapple
blueorange
bluetomato
...
I know it is not that complex but I'll appreciate the help!