and condition in if statement python code example

Example 1: 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 2: python if statement

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

Example 3: python if condition

if my_condition:
  # Do some stuff
  print("Hello You!")
else:
  # Do some stuff
  print("Hello World!")