What are mutable and immutable types in Python? List both of them.
Question : What are mutable and immutable types in Python? List both of them.
They are as follows:
- Lists
- Dictionaries
- Sets
Immutable types are those data types that can never change their value in place. In Python the following types are immutable:
- integers
- floating-point numbers
- Booleans
- Strings
- Tuples