Immutable data types are the objects that cannot be modified and altered (i.e. adding new elements, removing an element, replacing an element) after creating an object. The immutable data types in Python are:
- Tuple
- Int
- Float
- Complex
- Stringfrozen set [note: immutable version of set]
- Bytes
You can go through this Python Tutorial by Intellipaat to learn more about Datatypes in Python.
Also, watch this video on Python data types: