标签: python python-3.x
我想知道是否有办法告诉两个数字是否都高于0.我在考虑使用elif语句,但我不确定这是否有效。
elif
答案 0 :(得分:4)
使用boolean operators测试多个条件,and运算符执行您想要的操作:
and
if x > 0 and y > 0: # x and y are both over 0.
答案 1 :(得分:3)
只是为了好玩,这是另一种方法:
if min(x, y) > 0: # x any y are both over 0