I have a dictionary, and I want to print it in a table.
Example:
Dictionary:
{'Color1': 'Red', 'Color2': 'Blue', 'Color3': 'Yellow', 'Color4': 'Green'}
And I want a table like:
NUMBER: COLOR:
Color1 Red
Color2 Blue
Color3 Yellow
Color4 Green
Can anyone tell me how to do this?