CBSE Class 11 Computer Science Question 38 of 82

Lists in Python — Question 3

Back to all questions
3
Question

Question 3

Why are lists called mutable data type?

Answer

Lists are called mutable data types in Python because they allow modifications to be made to their elements after the list is created. This mutability facilitates operations such as adding, removing, or modifying elements within the list even after its initial creation.