Which of the following is not an example of a collection in Python?
2026
Which of the following is not an example of a collection in Python?
- A.
list
- B.
bool
- C.
tuple
- D.
str
Attempted by 240 students.
Show answer & explanation
Correct answer: B
In Python, collections are data structures capable of holding multiple items. Examples include lists, tuples, sets, and dictionaries. The bool type represents a single truth value (True or False) rather than storing multiple elements, so it is not considered a collection type.