标签: python if-statement
如何在单个if语句中编写以下内容:
if x != 5: if y < 4: statement
答案 0 :(得分:10)
if x != 5 and y < 4: statement