Python Programming - Tuples - Discussion

Discussion Forum : Tuples - General Questions (Q.No. 18)
18.
What is the primary difference between tuples and lists?
Tuples are mutable, while lists are immutable.
Tuples are ordered, while lists are unordered.
Tuples allow duplicate elements, while lists do not.
Tuples are immutable, while lists are mutable.
Answer: Option
Explanation:
Tuples cannot be modified once created, making them immutable.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.