cosmologicon / pywat

Python wats
1.22k stars 99 forks source link

Don't be stupid - read the docs #32

Open kamikaze opened 7 years ago

kamikaze commented 7 years ago

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

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