#Convert a dictionary to a list of tuples.
d3 = {'apple': 1, 'oranges': 2, 'bananas': 3, 'grapes': 4, 'strawberries': 5, 'watermelon': 6}
list(d3.items())
Ouput:
[('apple', 1),
('oranges', 2),
('bananas', 3),
('grapes', 4),
('strawberries', 5),
('watermelon', 6)]