what is list how list differ from tuple?
Answers
Answered by
3
Answer:
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.
Similar questions