any
any(iterable)
Returns true if any element of the iterable is true. Equivalent to:
def any(iterable): for element in iterable: if element: return True return False
New in version 2.5.
any(iterable)
Returns true if any element of the iterable is true. Equivalent to:
def any(iterable): for element in iterable: if element: return True return False
New in version 2.5.
this page was rendered by a django application in 0.01s 2012-02-09 19:56:31.052992. hosted by webfaction.