It is a conditional statement used for decision making in python. In if statement, the test condition is evaluated and the statements inside the if block are executed only if the evaluated condition is true. In if statement, we have only one set of statements to select based on the test condition. So, it is also called as One-way selection statement.
Below is the syntax of simple if statement:

Example:
a=10
if(a>0):
print("Positive Integer")
Output
Positive Integer
You must log in to post a comment.