in python please
Function name: deep_copy Parameters: list Returns: list Description: When a list is cloned in Python, any nested lists will be aliases of each other. This is called a shallow copy. Your goal for this function is to recursively clone a list with every nested list also being a clone as well (deep copy). You may assume dictionaries will not be inside the list and all tuple elements will be immutable Test Cases: >>a-[(1, “d”), [“a”,
OR
OR