Home »
Python »
Python List MCQs
What is the list in Python?
1. What is the list in Python?
- A mutable type of data type which can store anything
- An immutable type of data type which can only store string
- A mutable type of data type which can store only string
- A mutable type of data type which can only store numbers
Answer: A) A mutable type of data type which can store anything
Explanation:
List is python's one of the data types which is mutable and can store anything i.e., numbers, strings, characters, etc.