Classify a list slice assigned to a new name. Which statements describe the resulting copy? Select all that apply.
Explanation
The slice creates a distinct outer list, so structural changes to that outer container are separate. Its selected elements are not recursively copied, however, so a mutable element can still be the same object in both lists.