how to do or in if statement python code example

Example 1: python if statement

usrinput = input(">> ")
if usrinput == "Hello":
  print("Hi")
elif usrinput == "Bye":
  print("Bye")
else:
  print("Okay...?")

Example 2: how to use an if statement in python

x = True

#Only one of the branches will ever execute
if x == True:
	print("x is true")
elif x == False:
	print("x is false")
else:
	print("x is neither true nor false")

Example 3: if statement python

if (condition):
   result
    
else:
   result

Example 4: if statement python

x=1; y=0; z=0;
if 1 in {x,y,z}:
  print('At least one variable is equal to 1')