Kmspico Download | Official KMS Activator Website [New Version 2024] Fast and Easy Converter YouTube to MP3 Online KMSAuto Net Activator Download 2024 Immediate Byte Pro Neoprofit AI Blacksprut without borders. Discover new shopping opportunities here where each link is an entrance to a world ruled by anonymity and freedom.

if Statement Use in Python

When an expression is true in an if statement then it executes its statement and if the expression is false then it is not executed.

As long as the expression given by these control statements is not true, then it is its own statement; does not execute.

Use If statement in Python, How to use If Statement in Python

Syntax of if Statement

if expression :
if_statement(s)

Example of if Statement Source Code :

x = 2
y = 3
if(x < y) :
print("x is less than y")

Output :

x is less than y