Question
What is a list in Python?
Solution
β Verified
A list is a built-in data type in Python that is used to store multiple items in a single variable. It is ordered, mutable, and can contain elements of different data types.
Click here to download practice questions on
Python Lists