Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Modifies the given dictionary d by adding another key:value assignment for all employees but with a bonus for the next year. You can assume the
Modifies the given dictionary by adding another key:value assignment for all employees but with a bonus for the next year. You can assume the previous year exists in the dictionary.
Preconditions and Postconditions
d: dict
bonus: intfloat
year: int
Returns: dict adds the key:value pair with bonus applied
Recommended methods:
dict.keys returns all the keys in a dictionary
'one': 'two': 'three': 'four':
Dkeys returns one 'two', 'three', 'four'
List concatenation or append method
Tip: Dictionaries, just like lists, are mutable, so saving a reference to a dictionary, say mapping to another key in and then changing information in will also change the data in which is not a desirable behavior. When adding a new key, create new dictionaries and lists and populate them with the required data.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started