I am trying to add multiple lists into a dictionary - one key and one value list. I can do two lists to a dictionary but I am wondering how to do multiple lists joining with some missing value in one of the lists.
a = ['apple', 'orange', 'lemon']
b = ['London', 'New York', 'Tokyo']
c = ['Red', 'Orange', 'Yellow']
d = ['good', 'bad', '']
fruito = zip(a, b)
fruit_dictionary = dict(fruito); fruit_dictionary
Expected output:
fruit_dictionary = {'apple': ['London', 'Red', 'good'],
'orange': ['New York', 'Orange', 'bad'],
'lemon': ['Tokyo', 'Yellow']}