+ 1
What is the Difference between List and Tuple?
I know but make me Clear
5 Answers
+ 3
Tuple is can't change values
List is can change values
+ 2
We can conclude that although both lists and tuples are data structures in Python, there are remarkable differences between the two, with the main difference being that lists are mutable while tuples are immutable. A list has a variable size while a tuple has a fixed size. Operations on tuples can be executed faster compared to operations on lists.
+ 1
Jan Markus thanks to provide a link related to this question
But I need simple and easy way to understand.
really, now mh understand through that link you provided me đ
+ 1
Yup...
+ 1
list are mutable
tuple are inmutable