The true meaning of mutable & Immutable in Python
mutable → Changeable / modifiable
immutable → Unchangeable / unmodifiable
Python works in a way that only a few programming languages do.
X = 10
Y = X
X = 20
print(X) # 20
print(Y) # 10
What happened here, right?
Let’s go, step by ...
hardcore-software.hashnode.dev1 min read