Kizspy Question: 33
(Choose 1 answer)
You have the following dictionary definition:
d={'foo': 100, 'bar': 200, 'baz': 300}
What method call will delete the entry whose value is 200?
A. d.pop("bar")
B. d.remove("bar")
C. d.remove("200")
D. d.pop("200")