I have a generator which iterates over strings, eg ['apple', 'banana', orange'].
I have an additional generator which iterates over a different set of strings, eg ['car', 'truck', 'bike']
I'd like to create a generator, that when iterated over, returns the following:
'applecar', 'bananatruck', 'orangebike'.
Is there a way to do this?
zipfunction:[a+b for a,b in zip(list1, list2)]