How to get or/and of Booleans in python. For example I have a list of Booleans
lst = [True, True, False, False, True]
I want to define another Boolean variable based on condition in this lst. What is the best way of returning True if any one item is True within lst. Also how can I return True with the condition that all items are True within lst