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
Get step-by-step solutions from verified subject matter experts
