python if conditional code example
Example 1: python if and
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something
Example 2: if then else python
a = 200
b = 33
if b > a:
print("b is greater than a")
elif a == b:
print("a and b are equal")
else:
print("a is greater than b")