I want to challenge myself and I want to build a keyword combiner tool like these ones:
I would like to build this using Python but I don't really know how to combine the items from a list with another list:
a = ['blue', 'red', 'green']
b = ['shoes', 'shirt', 'pants']
c = a + b
And if I print c
I get this:
['blue', 'red', 'green', 'shoes', 'shirt', 'pants']
But I want it to be combined as this:
- blue shoes
- red shoes
- green shoes