This is my dictionary
mydict = {'PENNY': 0, "NICKEL": 0, "DIME": 3, "QUARTER": 5, "HALF DOLLAR": 3, "ONE": 0}
It's a dictionary of the change I have in my pocket.
I want come up with way to delete the items from mydict whose values are 0.
I want to change
{'PENNY': 0, "NICKEL": 0, "DIME": 3, "QUARTER": 5, "HALF DOLLAR": 3, "ONE": 0}
into
{"DIME": 3, "QUARTER": 5, "HALF DOLLAR": 3}
How do I do this?