InterviewSolution
Saved Bookmarks
| 1. |
What are immutable and mutable types ?list immutable and mutable types of python. |
|
Answer» Simple PUT, a MUTABLE object can be changed after it is created, and an immutable object can't. Objects of built-in types like (int, float, bool, str, TUPLE, unicode) are immutable. Objects of built-in types like (LIST, set, dict) are mutable. CUSTOM classes are generally mutable.Please mark as brainlist answers Explanation: |
|