Hi, I am new to Python and this forum.
My question is:
I have two lists:
list_a = ['john','peter','paul'] list_b = [ 'walker','smith','anderson']
I managed to create a list like this using zip :
list_c = zip(list_a, list_b) print list_c # [ 'john','walker','peter','smith','paul','anderson']
But as a result, I am looking for a list:
list_d = ['john walker','peter smith','paul anderson']
No matter what I tried, I did not succeed! How can I get this result?
user3460882
source share