Home »
Python »
Python Tuples MCQs
Python tuples are IMMUTABLES. What does this statement mean?
2. Python tuples are IMMUTABLES. What does this statement mean?
- An immutable nature of python tuples states that it allows us to store the element at the creation time only
- An immutable nature of python tuples states that it allows us to store the data whenever we want after its creation
Answer: A) An immutable nature of python tuples states that it allows us to store the element at the creation time only.
Explanation:
An immutable nature of python tuples states that it allows us to store the element at the creation time only.