Python If

Python If:

Python If statement is a conditional statement, which can be used in various forms to check a condition or multiple conditions and to perform the specified action or actions, if the particular condition is true. These are:

  • if statement
  • if-else statement
  • nested if statement

if statement:

If statement is used to perform an action if a single condition is true.

Syntax:

if (condition):

Execute this code if condition is true; else nothing to be executed

Example:

a = "231"
if (a == "231"):
   print a

Output:

Please follow and like us:
Content Protection by DMCA.com