xxxxxxxxxx
# Program to demonstrate conditional operator
a, b = 10, 20
# Copy value of a in min if a < b else copy b
min = a if a < b else b
xxxxxxxxxx
# Ternary expression syntax:
# value_if_true if condition else value_if_false
#
# Example:
a = True
b = "yes" if a else "no" # b will be set to "yes"
xxxxxxxxxx
a, b = 10, 20
# Copy value of a in min if a < b else copy b
min = a if a < b else b
xxxxxxxxxx
Program to demonstrate ternary operators in Python
marks = input('Enter the marks: ')
print("The result is Pass" if int(marks)>=35 else "The result is Fail")
xxxxxxxxxx
# Program to demonstrate conditional operator
a, b = 10, 20
# Copy value of a in min if a < b else copy b
min = a if a < b else b
print(min)
xxxxxxxxxx
condition = True
print("This condition is true!") if condition else print("This condition is false!")