Advertisements
Advertisements
प्रश्न
Elif can be considered to be the abbreviation of ______.
पर्याय
nested if
if..else
else if
if..elif
Advertisements
उत्तर
Elif can be considered to be the abbreviation of else if.
Explanation:
The elif statement in Python is a shorthand for "else if" and is used to check multiple conditions in a sequence.
APPEARS IN
संबंधित प्रश्न
Which punctuation should be used in the blank?
if<condition>_
statement-block 1
else:
statement-block 2
List the control structures in Python.
Write is the syntax of if..else statement?
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.
Write the syntax of the while loop.
List the differences between break and continue statements.
Write a program to display all 3 digit odd numbers.
Write a program to display a multiplication table for a given number.
