Question:medium

Differentiate between Mutable and Immutable objects in Python.

Show Hint

  • {Mutable} = Changeable objects (List, Dictionary, Set).
  • {Immutable} = Unchangeable objects (Int, String, Tuple).
In short: \[ \text{Mutable → Value can change} \quad | \quad \text{Immutable → Value cannot change} \]
Updated On: Mar 10, 2026
Show Solution

Solution and Explanation

Was this answer helpful?
0