Question: if I have 2 lists list1 = ['a', 'b', 'c', 'd'] list2= ['e', 'f', 'g', 'h', 'i', 'k'] and output I want is: list3 =

if I have 2 lists

list1 = ['a', 'b', 'c', 'd']

list2= ['e', 'f', 'g', 'h', 'i', 'k']

and output I want is:

list3 = [['a' , 'e'] , ['b' , 'f'], ['c', 'g h'], ['d', 'i k']]

example is kind of short in length,

I want to know how to pair 'c' with 'g h' and 'd' with 'i k' in a list of list using python 3

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!