A Beginner's Guide to Mutable vs Immutable Data Types in Python
If we go by the literal meaning:
Immutable means something that cannot be changed.
Mutable means something that can be changed.
In Python, everything is an object, and variables do not store values directly.
Instead, variables store references (addre...
tech-tea.hashnode.dev2 min read