Python-Quizzes | Python Dictionary Quiz | Question 8
Question 8:Find the output of the following program:
dict = {} print ( all ( dict )) |
(A) { }
(B) False
(C) True
(D) An exception is thrown
Answer: (C)
Explanation: The all() method returns:
- True – If all elements in an iterable are true ot iterable is empty.
- False – If any element in an iterable is false.