So in Q9 of the Concept practice, we are introduced to the .pop('key'). Is this the same thing as del dict['key']? What is the benefit of using this over del?
It basically removes the specified key and it’s value. If there is no parameters specified it removes the last key and value.