पायथन सूचियों और टुपल्स के बीच मुख्य अंतर क्या है?
What’s the main difference between Python lists and tuples?
A
Lists can hold any data type and tuples can only contain int and str objects.
B
Lists are immutable and tuples are mutable.
C
Lists are faster and tuples are slower.
D
Lists are mutable and tuples are immutable.
Explanation
Correct Answer: D) Lists are mutable and tuples are immutable.