Inside Python – Immutability
Every Python user has come across the terms ‘mutable’/’immutable’ at one point or the other. It’s a property that determines the changeability of the object. If something in python in mutable, its value can be changed and if it’s not mutable, it’s value is fixed. For example, once a tuple is defined, a new member cannot be appended to it
Read more