Problem Statement
Which pair correctly lists a mutable and an immutable built-in type?
Explanation
Lists are mutable and can be changed in place. Tuples are immutable and cannot be changed after creation.
Understanding mutability is key to safe copying, hashing, and function argument behavior.
Code Solution
SolutionRead Only
lst=[1,2]; lst.append(3) tup=(1,2) # cannot append
