On Oct 24, 5:03 pm, sandipm <sandip.m... at gmail.com> wrote:
> Is "all" inbuilt function in python? what it does?
>>> help(all)
Help on built-in function all in module __builtin__:
all(...)
all(iterable) -> bool
Return True if bool(x) is True for all values x in the iterable.
--
Paul Hankin