conditional statement python code example
Example 1: condition ? expr If True : expr If False
condition ? expifTrue : expIfFalse;
Example 2: conditional block python
a = 1
b = 2
if a < b:
print("a is less than b") #This will run since 1 is less than 2
elif a > b:
print("a is greater than b")
else:
print("a is equal to b")