Of course there is the always the iteration method:
list = [1, True, True, False, False, True]
status = True
for each in list:
status = status and eachbut what is your best way to test for for False in a list? -- http://mail.python.org/mailman/listinfo/python-list
