CBSE Class 12 Computer Science
Question 67 of 105
Python Revision Tour — Question 21
Back to all questionsMutable types are those whose values can be changed in place whereas Immutable types are those that can never change their value in place.
Mutable types in Python are:
- Lists
- Dictionaries
- Sets
Immutable types in Python are:
- Integers
- Floating-Point numbers
- Booleans
- Strings
- Tuples