Wipro interview question

what is the difference between list an tuple?

Interview Answer

Anonymous

16 Feb 2022

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