I have a list of boolean conditions with pandas/numpy. For example
cond1 = x > 5
cond2 = x > 6
cond3 = x > 8
...
list_conds = [cond1, cond2, cond3, ...]
I want to mix them to produce the condition
cond1 & cond2 & cond3 & ...
How can I get this?