Python方式编写if和if not语句

时间:2019-11-20 15:40:09

标签: python

Python编写if和if not语句的方式

a = 5
b = False
if a>3:
    if not b:
        print("hi")

1 个答案:

答案 0 :(得分:1)

您可以对Python中的if语句使用逻辑运算符andor

a = 5
b = False

if a > 3 and not b:
    print("hi")