Screen Link: https://app.dataquest.io/m/1011/python-fundamentals-practice-problems/5/making-a-dictionary-from-two-lists
My Code:
my_dict = {}
for i in range(len(keys)):
my_dict[keys[i]] = values[i]
print(my_dict)
What I expected to happen:
Nice Work!
What actually happened:
“my_dict isn’t defined in your code, but we expected it to be dict type”