dict(A.delete(B), A) - delete an entry from a dictionary
dict(A.delete(B), A) deletes an entry for a specified key from the dictionary.
If no such entry exists than nothing happens. No exception
is being raised. For conveniance, this method returns the dict
itself.