Home »
Python »
Python List MCQs
Python lists are MUTABLE. What does this statement mean?
2. Python lists are MUTABLE. What does this statement mean?
- A mutable nature of the python list states that it allows us to store the element at the creation time only
- A mutable nature of the python list states that it allows us to store the data whenever we want after its creation
Answer: B) A mutable nature of the python list states that it allows us to store the data whenever we want after its creation.
Explanation:
A mutable nature of the python list states that it allows us to store the data whenever we want after its creation which means we can modify the data anytime.