Question: Where is the problem I need to change? Changing a Copy of a List Write a function called copy me that takes as input a


Where is the problem I need to change?
Changing a Copy of a List Write a function called copy me that takes as input a list, and returns a copy of the list with the following changes Strings have all their letters converted to upper-case Integers and floats have their value increased by 1 booleans are negated (False becomes True, True becomes False) Lists are replaced with the word "List The function should leave the original input list unchanged (i.e., do not mutate the list) Mutating a List Write a function called mutate.me that takes as input a list, returns None, and changes the input list in the following ways: Strings have all their letters converted to upper-case Integers and floats have their value increased by 1 booleans are negated (False becomes True, True becomes False Lists are replaced with the word "List So we're performing the same task, but this time we're changing the list itself instead of making a copy to
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
