if or in python 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: or in if statement python
weather == "Good!" or weather == "Great!":
# Or the following
weather in ("Good!", "Great!"):