Merge 2 lists into 1 dictionary | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Merge 2 lists into 1 dictionary

Eg: Key=[1, 2] Value=["a", "b"] As {1:'a', 2:'b'} https://code.sololearn.com/c16cNJZvdCd1/?ref=app My first trial is

3rd Dec 2020, 7:48 AM
Mohammad Shireen
Mohammad Shireen - avatar
3 Answers
+ 12
Hii Mohammad Shireen One way is - dict(zip([1,2,3,4], [a,b,c,d])) If you have more keys than values, and you want to fill in values for the extra keys, you can use - itertools.izip_longest. Now see that If the lists are big you should use itertools.izip .. --- Example - i = iter(["a", "a", "b", "c", "b"]) j = iter([1,2,3,4,5]) k = list(zip(i, j)) for (x,y) in k: if x in d: d[x] = d[x] + y #or whatever your function needs to be to combine them else: d[x] = y
3rd Dec 2020, 8:31 AM
Piyush
Piyush - avatar
+ 5
Use builtin zip function ``` keys = [1,2] values = ["a","b"] print(dict(zip(keys,values))) ``` https://realpython.com/JUMP_LINK__&&__python__&&__JUMP_LINK-zip-function/
3rd Dec 2020, 7:53 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
+ 3
I didn't know about zip.. Here's my try... https://code.sololearn.com/cViNm8tBR339/?ref=app
3rd Dec 2020, 7:53 AM
Steve Sajeev
Steve Sajeev - avatar