[Python] list 2개를 key, value로 하여 dictionary 생성하기

🦥 python list 2개로 dictionary를 생성하기

key = ['Alex', 'Jess', 'Dilan', 'Mei', 'Teddy']
value = [80, 90, 95, 67, 88]
key_val = [key, value]
landmark_dict = dict(zip(*key_val))

[실행 결과]

{'Alex': 80, 'Jess': 90, 'Dilan': 95, 'Mei': 67, 'Teddy': 88}

Categories:

Updated:

Leave a comment