Python中的多个if语句在单个if语句中

时间:2011-07-24 19:42:35

标签: python if-statement

如何在单个if语句中编写以下内容:

if x != 5:
    if y < 4:
        statement

1 个答案:

答案 0 :(得分:10)

if x != 5 and y < 4:
  statement