cosmologicon / pywat

Python wats

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't be stupid - read the docs

kamikaze opened this issue · comments

https://docs.python.org/3/library/functions.html#all

def all(iterable):
    for element in iterable:
        if not element:
            return False
    return True