==============================================================
Mutable and Immutable Objects
==============================================================
--------------------
Mutable Object
--------------------
=>A Mutable Object is one, whose Contanet can be changed / modifiled / Updated at
Same Address.
=>Examples:
bytearray, list, set,dict
--------------------------------
Immutable Object
--------------------------------
=>An Immutable Object is one, which will satisfy the following Properties.
1. An immutable content can't be Changed at Same Address
( An immutable content can be changed and result placed at
NEW Address)
2. An Immutable Object does not Support Item Assignment.
----------------
Examples
----------------
int, float, bool,complex, str,
bytes,range,tuple,set,frozenset,NoneType.
-----------------------------------------------------------------------------------
-------------------------------------------------------------