0
What is the actual difference between list and Tuples
Both list and tuple have similar properties Similar works too, then in which way both are practically different
2 Réponses
+ 2
https://www.afternerd.com/blog/difference-between-list-tuple/
Hope you'll get an idea!! 👍
+ 1
Biggest difference you will see:
Lists: [ ]
Tuples: ( )
Biggest difference you dont see:
Lists: changeable (mutable)
Tuples: unchangeable (immutable)