Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PYTHON There are two lists A and B. A = ['a,'b',c',d'] B=[ ['z' , 'c' , 'v' , 'b'], ['1' , '2' , '3' ,

PYTHON

There are two lists A and B.

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

B=[ ['z' , 'c' , 'v' , 'b'], ['1' , '2' , '3' , 4'] , ['q' , 'w' , 'e' , 'r'] , ['3' , '5', '6', '8'] ,['a' , 'b' , 'c' , 'd'] , ['h' , 'j' , 'k' , 'l' ] ]

How do you combine the two lists to create a dictionary in a list like this?:

C= [ { 'a': 'z' , '1', 'q', '3' , 'a' , 'h'} , {'b' : 'c' , '2' , 'w' , '5' , 'b' , 'j'} , { 'v' : '3' , 'e' , '6' , 'c' , 'k'} , {'d' : '4' , 'r' , '8' , 'd' , 'l'} ]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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