KnowledgeBoat Logo

Computer Science

Why are lists called a mutable data type?

Python List Manipulation

3 Likes

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.

Answered By

3 Likes


Related Questions