I want the results of the function to be:
def all_bools_equal(lst): return all(lst) or not any(lst)
See: http://docs.python.org/library/functions.html#all
See: http://docs.python.org/library/functions.html#any