Question: Write a function definition that accepts two lists of equal lengths and pairs them in a key:value dictionary in PYTHON 3.5 EXAMPLE: keys = [red,
Write a function definition that accepts two lists of equal lengths and pairs them in a key:value dictionary in PYTHON 3.5
EXAMPLE:
keys = ["red", "blue", "green"]
values = [200, 300, 400]
Returns:
{"red": 200, "blue": 300, "green":400}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
