what is the difference between list an tuple?
Utilisateur anonyme
List is read and write able but tuple is only readable. we cannot change tuple values if we want to change we need to change it in to list then change the values and then change it into tuple again. Tuple is immutable and list is mutable