CBSE Class 12 Computer Science
Question 54 of 105
Python Revision Tour II — Question 3
Back to all questionsA list is a standard data type of python that can store a sequence of values belonging to any type. Lists are mutable i.e., we can change elements of a list in place. Their dynamic nature allows for flexible manipulation, including appending, inserting, removing, and slicing elements. Lists offer significant utility in data storage, iteration, and manipulation tasks.