A mutable object can be changed after it's created, and an immutable object can't.
For example, lists are mutable in Python:
And tuples are immutable:
Strings can be mutable or immutable depending on the language.
Strings are immutable in Python:
But in some other languages, like Ruby, strings are mutable:
Mutable objects are nice because you can make changes in-place, without allocating a new object. But be careful—whenever you make an in-place change to an object, all references to that object will now reflect the change.
Interview coming up?
Get the free 7-day email crash course. You'll learn how to think algorithmically, so you can break down tricky coding interview questions.
No prior computer science training necessary—we'll get you up to speed quickly, skipping all the overly academic stuff.
No spam. One-click unsubscribe whenever.
You're in! Head over to your email inbox right now to read day one!