I have two python lists like the following:
fruits = ["apple", "banana", "guava", "grapes"]
colour = ["red", "yellow", "green", "black"]
I wish to convert them into a dictionary of the following format:
dictionary = [{"fruit":"apple", "colour":"red"},{"fruit":"banana", "colour":"yellow"}...]