Python if关键字



在Python中,if关键字允许我们创建条件语句。如果给定的条件为True,则将执行if语句块。if关键字区分大小写。

语法

以下是Pythonif关键字的语法:

if condition:
    statement1
	statement2

示例

在上面,我们讨论了if关键字的语法。现在,让我们用一个基本示例来理解if关键字:

var= 24
if var> 10:
    print("The Given Condition Is Satisfied ")

输出

以下是上述代码的输出:

The Given Condition Is Satisfied

if关键字区分大小写

Pythonif关键字区分大小写。如果在if关键字中将i大写,则会得到一个SyntaxError

示例

让我们用一个例子来理解:

If True:
    print("Positive number")

输出

以下是上述代码的输出:

File "E:\pgms\Keywords\if.py", line 2
    If True:
       ^^^^
SyntaxError: invalid syntax

if关键字在False条件下

如果给定的表达式不满足或为False,则不会执行if块。在这种情况下,将执行if块之外的语句。

示例

让我们用一个条件为False的例子来理解:

var=False
if var:
    print("This statements will not be excecuted as the condition is False.")
    
print("This statements gets excecuted as it is outside the if block.")

输出

This statements gets excecuted as it is outside the if block.

嵌套if

如果我们在另一个if块内使用一个或多个if块,则称为嵌套if。当有多个条件需要检查时,我们使用嵌套if语句:

x=4
if True:
    print("This statement get excecuted.")
    if x%2==0:
            print("The given number is even number.")        

输出

This statement get excecuted.
The given number is even number.
python_keywords.htm
广告