Python False 关键字



在 Python 中,False 关键字表示布尔值。它是比较操作的结果。False 的整数值为

它是区分大小写的。它通常用于控制流语句,如ifwhilefor 循环,以控制流程并根据逻辑执行。

False 关键字的整数值

False 关键字的整数值为0。在算术运算中,我们可以使用False 代替零。

示例

让我们通过以下示例找到False 关键字的整数值:

x=False
y=int(x)
print("The integer value of ",x,":",y)

输出

以下是上述代码的输出:

The integer value of  False : 0

False 关键字区分大小写

False 关键字是区分大小写的。它必须写成 False,其中F 大写。使用false 代替False 将导致NameError

示例

x=false
print("We will get NameError",x)

输出

Traceback (most recent call last):
  File "E:\pgms\Keywords\false.py", line 11, in <module>
    x=false
      ^^^^^
NameError: name 'false' is not defined. Did you mean: 'False'?

False 关键字在条件语句中

False 关键字用于if 块、while 循环。仅当条件为 True 时才执行if 块。如果给定条件为False,则不会执行该特定块。类似地,在while 循环中,循环内的语句将不会执行。

示例:if 语句中的 False 关键字

让我们通过一个示例了解False 关键字。这里,x 的值为9。x 是一个大于 0 的正数。给定条件是 x 小于 0,这是False,因此不会执行块内的代码。

x=9
if x<0:
    print(x,"is a negative number")
else:
    print(x,"is a positive number")

输出

以下是上述代码的输出:

9 is a positive number

循环中的 False 关键字

当给定条件不满足时,条件为False。在这种情况下,while 循环内的语句将不会执行。

示例

var=False
while var:
    print("This statements will not be executed as the condition is False.")
   
print("This statements gets executed as it is outside the while loop.")

输出

This statements gets excecuted as it is outside the while loop.

函数中的 False 关键字

让我们了解函数中的False 关键字。函数将根据条件返回TrueFalse。如果条件满足则返回 True,否则返回False

def natural(num):
    return num>0
    
x=-4
print("The given number is natural number True/False :",natural(x))
y=9
print("The given number is natural number True/False :",natural(y))

输出

以下是上述代码的输出:

The given number is natural number True/False : False
The given number is natural number True/False : True
python_keywords.htm
广告