python if this and this code example
Example 1: or statement python
if x==1 or y==1:
print(x,y)
Example 2: python if and
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something
Example 3: else if python
if (condion):
result
elif (condition):
results
else:
result