我们可以在一个if语句中放入2个条件吗?

时间:2018-05-26 16:20:45

标签: python python-2.7 if-statement conditional

我想问我们是否可以将2个或更多条件放入单个'if'中 例如:

if a == 1 b == 2:
     print 'can we do this? If yes, how? '

2 个答案:

答案 0 :(得分:1)

如果您想检查两者是否属实,请使用and

if (a == 1) and (b == 2):

“如果a等于1 b等于2 ......”。

查找其他类似操作的逻辑运算符。

答案 1 :(得分:1)

两种情况都是真的

if condition1 and condition2:

其中一个条件是真的

if condition1 or condition2: