top of page
Writer's pictureRajesh Singh

If statement in Python with Example

Updated: Feb 16, 2022


If statements are control flow statements and it is run a particular code only when a condition is satisfied. It means that to print a message or result on the screen only when a condition is true and it condition is false then it is not print a message or result on screen. if..else, if..elif..else are other control flow statements available in Python.


Syntax:

if condition:

statement


Example:

a = True

if a==True:

print("Welcome")

print("To")

print("Career Bodh Sansthan")


Output:

Welcome

To

Career Bodh Sansthan

Example2:

a=10

if a>0:

print("Positive Number")

Output:

Positive Number

Example2:

a=-10

if a>0:

print("Positive Number")

Output:

No result on screen


11 views0 comments

Recent Posts

See All

For Loop MCQs in Python

Q1. What is the output of the following Python code? x={1:"X",2:"Y",3:"Z"} for i,j in x.items():     print(i,j,end=" ") A.    1 X 2 Y 3 Z...

Comentarios


bottom of page