I'm trying to create a new list from 2 lists using list comprehension
>>> l = ['%sdummy1', '%sdummy2']
>>> z = ['new1', 'new2']
With basic list comprehension knowledge I can get the list below
>>> x = [item % 'new1' for item in l]
['new1dummy1', 'new1dummy2']
>>>
but how can I iterate over the "z" and get the list below?
['new1dummy1', 'new1dummy2', 'new2dummy1', 'new2dummy2']