xxxxxxxxxx
# all returns true for all true value in iterable otherwise is false
assert all([True, True, True]),"meanful message here" # This will excute
assert all([True, False, True]),"meanful message here" # This will through an exception
# any returns true for any true value in iterable otherwise is false
assert any([False, True, False]),"meanful message here"
assert any([False, False, False]),"meanful message here"