Is there a way to delete an element from a dictionary in Python?
I know I can just call .pop on the dictionary, but that returns the element that was removed. What I'm looking for is something returns the dictionary minus the element in question.
At present I have a helper function that accepts the dictionary in question as parameter, and then returns a dictionary with the element removed, Is there a more elegant solution?
pop()method is only supported by the list and array types." – bernie Mar 28 at 19:47