There are two kind of types in Python. Immutable types and mutable types.
Immutables
An object of an immutable type cannot be changed. Any attempt to modify the object will result in a copy being created.
This category includes: integers, floats, complex, strings, bytes, tuples, ranges and frozen...