Python
What is the difference between mutable and immutable objects?
Mutable objects (list, dict, set, user-defined classes) can be modified in place -- all references see the change.
Mutable objects (list, dict, set, user-defined classes) can be modified in place -- all references see the change.