all and any are self-explanatory as well. Simply put, they are extended and and or operators, and work with multiple values at once:
all([False, True, True])>>> Falseany([False, True, False])>>> True