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.

 

A Django site. this page was rendered by a django application in 0.02s 2008-08-29 23:28:17.325367. hosted by webfaction.