Question: Python Question: Write a function called remove_value() . Given an object and a key, remove_value() returns a copy of the dictionary with given key-value pair

Python Question:

Write a function called remove_value() .

Given an object and a key, remove_value() returns a copy of the dictionary with given key-value pair removed. If the key is not in the dictionary, it should return a copy of the dictionary without any changes.

dictionary = {'name':'Sam', 'age': 20}

remove_value(dictionary, 'name')

print(dictionary) # --> {'age': 20}

print(dictionary.get('name')) # --> None

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!