I was trying to create a dictionary using 2 lists of same length (42 in this case) using zip().
Something like this
wordslist = ['If','you','let','my','daughter','go','now',"that'll",'be','the','end','of','it','I','will','not','look','for','you','I','will','not','pursue','you','But','if','you',"don't",'I','will','look','for','you','I','will','find','you','and','I','will','kill','you']
keylist = [2, 3, 3, 2, 8, 2, 3, 7, 2, 3, 3, 2, 2, 1, 4, 3, 4, 3, 3, 1, 4, 3, 6, 3, 3, 2, 3, 5, 1, 4, 4, 3, 3, 1, 4, 4, 3, 3, 1, 4, 4, 3]
a = dict(zip(wordslist,keylist))
b = dict(zip(keylist,wordslist))
The dictionaries created in case a and case b are of different lengths. a is 25 and b is 8. I am not able to understand why.