python if or condition 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':
Example 3: python if condition
if my_condition:
print("Hello You!")
else:
print("Hello World!")
Example 4: python condition
if condition:
elif condition:
else:
hour = 14
if hour < 8:
print("It's morning")
elif hour < 18:
print("It's the day")
else:
print("It's the evening")
Example 5: or in if statement python
weather == "Good!" or weather == "Great!":
weather in ("Good!", "Great!"):