Advertisements
Advertisements
प्रश्न
Write a detailed note on if..else..elif statement with suitable example.
उत्तर
- When we need to construct a chain of if statement(s) then the ‘elif’ clause can be
used instead of ‘else’.
Syntax:
if < condition -1>:
statements-block 1
elif< condition -2>:
statements-block 2
else:
statements-block n - In the syntax of if..elif ..else mentioned above, condition -1 is tested if it is true then statements-block 1 is executed, otherwise, the control checks condition-Z, if it is true statements- block2 is executed and even if it fails statements-block n mentioned in else part is executed.
- ‘elif’ clause combines if..else- if ..else statements to one if..elif … else, “elif’ can be considered to be the abbreviation of ‘else if’. In an’if’ statement, there is no limit to ‘elif’ clause that can be used, but a clause if used should be placed at the end.
Example:
# Program to illustrate the use of nested if statement
Average – Grade
> =80 and above A
> =70 and above B
> =60 and <70 C
> =50 and <60 D
Otherwise E
Example-program
m1 = int (input(“Enter mark in first subject:”))
m2 = int (input(” Enter mark in second subject:”))
avg = (ml+ml)/2
if avg> =80:
print (“Grade: A”)
elif avg> =70 and avg< 80:
print (“Grade: B”)
elif avg> =60 and avg< 60:
print (“Grade: C”)
elif avg> =50 and avg< 60: .
print (“Grade: D”)
else:
print(“Grade: E”)
Output 1:
Enter mark in first
subject: 34
Enter mark in second
subject: 78
Grade: D
APPEARS IN
संबंधित प्रश्न
How many important control structures are there in Python?
What is the output of the following snippet?
i=1
while True:
if i%3 ==0:
break
print(i,end='')
i +=1
What is the output of the following snippet?
T=1
while T:
print(True)
break
Which amongst this is not a jump statement?
Which punctuation should be used in the blank?
if<condition>_
statement-block 1
else:
statement-block 2
List the control structures in Python.
Define control structure.
Write a note on the range () in the loop?
Using if..else..Elif statement writes a suitable program to display the largest of 3 numbers.
List the differences between break and continue statements.