QuestenaPractice that shows what to review next
Question 105

Classify a list slice assigned to a new name. Which statements describe the resulting copy? Select all that apply.

  1. The outer list is a new object.Correct answer
  2. The slice is the very same outer list.
  3. Selected mutable elements may still be shared.Correct answer
  4. Every selected object is recursively copied.

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.

Continue with this test

Start practice
Question 105: Classify a list slice assigned to a new name. Which… · Python Fundamentals · Questena