How does one filter the items of a dictionary based on the values therein. For instance, given the following dictionary:
990.5| 0
900.5| 0
600.5| 300
600 | -300
How does one filter out all instances therein where the value = 0. The result thereafter being:
600.5| 300
600 | -300
Thanks