I have 2 lists:
name = ["Stirling","Lana","Cyril","Pam","Ray","Cheryl"]
alias =["Duchess","Truckasaurus","Chet","Cookie Monster","Gilles de Rais","Cherlene"]
I need to create a dictionary such that the name is the key and alias is the value, in this particular way:
Stirling : Duchess
Also I have to use the for loop to do so.