if and esle if statements python code example
Example: how to use an if statement in python
x = True
#Only one of the branches will ever execute
if x == True:
print("x is true")
elif x == False:
print("x is false")
else:
print("x is neither true nor false")