If b is a dictionary, what does any(b) do?
(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
The question was asked in an interview.
My query is from Dictionary in chapter Dictionary, Functions and Built-in Functions of Python