An Immutable object, in the lime light of object-oriented and functional programming, is an object whose state cannot be modified after it is created. Objects of built-in types like (int, float, bool, str, tuple, unicode) are immutable, A Mutable object, can be mutated or state can be modified after it is created. A mutable object will have at least a single method able to […]