+ 4
Can Lists & Tuples do really prove to be beneficial to store, multiple values & perform various operations.....
? Which (tuples) have similar Python functionality to list? Hence why Tuples are required.
2 Antworten
+ 5
Tuples has fixed length while list don't.
Tuples are immutable while list is mutable
Tuple is faster than list
(read this for more)
https://stackoverflow.com/questions/1708510/list-vs-tuple-when-to-use-each
+ 1
The tuples is inmutable