or condition python code example

Example 1: or statement python

if x==1 or y==1:
  print(x,y)

Example 2: python if

if num<5:
  print('Num less than 5')
elif 5<= num <=9:
  print('Num between 5 and 9')
else:
  print('Num more than 9')

Example 3: python or

x = 1
y = 10

if x%2 == 0 or y%2 == 0:
  print(x%2)
  
#Output#
#1

Example 4: python if statement

if (condition1):
  print('condition1 is True')
elif (condition2):
  print('condition2 is True')
else:
  print('None of the conditions are True')

Example 5: python condition

if condition:
  	# stuff
elif condition:
  	# stuff
else:
  	# stuff
    

# EXEMPLE #

hour = 14

if hour < 8: # if hour is less than 8
  	print("It's morning")
elif hour < 18: # if hour is beetween 8 and 18
  	print("It's the day")
else: # if hour is upper than 18
  	print("It's the evening")

Example 6: or in if statement python

weather == "Good!" or weather == "Great!": 

# Or the following  

weather in ("Good!", "Great!"):