检查python和pands中条件的连续出现

时间:2018-07-30 21:10:59

标签: python-3.x algorithm pandas

目标是通过避免for和if循环来彼此检查一组条件。

condition 1
     condition 2
        condition 3
           condition 4

因此,如果所有条件都“彼此满足”,则此语句应为True。有任何想法吗?

1 个答案:

答案 0 :(得分:0)

尝试使用and运算符。

print(condition1 and condition2 and condition3 and condition4)