Advertisements
Advertisements
प्रश्न
Explain the Ternary operator with examples.
Advertisements
उत्तर
Conditional operator:
The ternary operator is also known as the conditional operator that evaluates something based on a condition being true or false. It simply allows testing a condition in a single line replacing the multiline if-else making the code compact.
The Syntax conditional operator is,
Variable Name = [on – true] if [Test expression] else [on – false]
Example:
min = 50 if 49 < 50 else 70 # min = 50 min = 50 if 49 > 50 else 70 # min = 70
APPEARS IN
संबंधित प्रश्न
Which of the following is not a token?
Which operator is also called a Conditional operator?
Write short notes on Tokens.
What is a literal?
Explain the types of literals?
What are the assignment operators that can be used in Python?
Discuss in detail Tokens in Python.
Identify the operator that gets the highest precedence while evaluating the given expression:
a + b % c * d - e
The default value of a boolean variable is ______.
Consider the following program segment in which the statements are jumbled, choose the correct order of statements to swap two variables using the third variable.
void swap(int a, int b)
{ a=b; -> (1)
b=t; -> (2)
int t=0; -> (3)
t=a; -> (4)
}
