5. How is a list type different from tuple data type of Python ?
List are mutable while Tuples are not.
5. How is a list type different from tuple data type of Python ? Read More »
List are mutable while Tuples are not.
5. How is a list type different from tuple data type of Python ? Read More »
Mutable objects are those which can change their values in place. e.g. List. Immutable types are those which can never change their values in place. e.g. Integers, Booleans, Strings
8. What do you understand by mutable and immutable objects? Read More »