Given age of a person and we have to check whether person is eligible for voting or not using Ternary operator.
Syntax:
[on_true] if [expression] else [on_false]
Here,
- [on_true] is the statement that will be execute if the given condition [expression] is true.
- [expression] is the conditional expression to be checked.
- [on_false] is the statement that will be executed if the given condition [expression] is false.
Example:
Input:
Enter Age :21
Output:
You are Eligible for Vote.
Program:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer