QuestenaPractice that shows what to review next
Question 25

Which statements accurately classify Python lists? Select all that apply.

  1. A list preserves element order.Correct answer
  2. A list can be changed in place.Correct answer
  3. Every element must have the same type.
  4. One list may contain objects of different types.Correct answer

Explanation

A list retains element order, permits content changes, and can hold objects of unrelated types. Requiring a single element type is a restriction found in some other sequence systems, not in ordinary Python lists.

Continue with this test

Start practice
Question 25: Which statements accurately classify Python lists? Select… · Python Fundamentals · Questena