Report Bug
Qus : If b is a dictionary, what does any(b) do?
Qusयदि b एक डिक्शनरी है, तो कोई भी (b) क्या करता है?

A. Returns True if any key of the dictionary is true
B. Returns False if dictionary is empty
C. Returns True if all keys of the dictionary are true
D. Method any() doesn’t exist for dictionary


Solution
A. Returns True if any key of the dictionary is true



Explanation
Method any() returns True if any key of the dictionary is true and False if the dictionary is empty.



Report Bug