- A List
- B Dictionary
- C Tuple
- D String
- Share this MCQ
Answer:
A
Share this MCQ
- Lists are created using square brackets.
- List is built-in data types in Python used to store collections of data.
- Lists are used to store multiple items in a single variable.
- List items are ordered, changeable, and allow duplicate values.
- To determine how many items a list has, use the
len()
function. - List items can be of any data type.
- A list can contain different data types.
Share this MCQ