7.12. List to Dictionary#

list1=[1,2,3,4]
list1
[1, 2, 3, 4]
{i:i*100 for i in list1} 
{1: 100, 2: 200, 3: 300, 4: 400}