Open In App
Related Articles

Python-Quizzes | Python Dictionary Quiz | Question 8

Improve Article
Improve
Save Article
Save
Like Article
Like

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.


Quiz of this Question

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 17 Sep, 2020
Like Article
Save Article
Previous
Next
Similar Reads