Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions