Advertisements
Advertisements
Question
Elif can be considered to be the abbreviation of ______.
Options
nested if
if..else
else if
if..elif
Solution
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
RELATED QUESTIONS
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
Which amongst this is not a jump statement?
List the control structures in Python.
Write a note on the range () in the loop?
List the differences between break and continue statements.
Write a detail note on for loop?
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display all 3 digit odd numbers.
Write a program to display a multiplication table for a given number.