Python错误关键字
一个布尔表达式会产生两个值(True, False),与此类似,一个布尔变量也可以被赋值(True, False)。这里 False 关键字表示将导致不为真的表达式。
示例 1:
在此示例中,首先,我们将给出一个布尔表达式,其结果为 False (10 < 6)。接下来,我们将 False 关键字直接分配给 if 语句。
Python3
# 10 < 6 is a boolean expression
# which evaluates to False
if(10 < 6):
print("it is True")
else:
print("it is False")
# here we directly assigned False
# keyword to if statement
if(False):
print("it is True")
else:
print("it is False")
Python3
# here we assigned the boolean expression to variable
# and the value will be False
gfg_flag = 5 > 10
# printing the variable value
print(gfg_flag)
# now we will be using this variable
if(gfg_flag):
print("it is True")
else:
print("it is False")
输出
it is False
it is False
示例 2:
在此示例中,我们将布尔表达式(5 > 10 ) 分配给变量gfg_flag ,然后我们将打印该变量以显示分配给它的值,即 False 关键字。接下来,我们将尝试在 if 语句中使用这个变量,这将导致执行 else 块。
Python3
# here we assigned the boolean expression to variable
# and the value will be False
gfg_flag = 5 > 10
# printing the variable value
print(gfg_flag)
# now we will be using this variable
if(gfg_flag):
print("it is True")
else:
print("it is False")
输出
False
it is False