标签: python-3.x algorithm pandas
目标是通过避免for和if循环来彼此检查一组条件。
condition 1 condition 2 condition 3 condition 4
因此,如果所有条件都“彼此满足”,则此语句应为True。有任何想法吗?
答案 0 :(得分:0)
尝试使用and运算符。
and
print(condition1 and condition2 and condition3 and condition4)