CBSE Class 12 Computer Science
Question 29 of 120
Review of Python Basics — Question 3
Back to all questionslist
Reason — The mutable data type in Python from the options given is a list. Lists can be modified after creation, allowing elements to be added, removed, or modified within the list. In contrast, integers (int), strings, and tuples are immutable data types in Python, meaning their values cannot be changed once they are created.