how to write if else in python code example

Example 1: or statement python

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

Example 2: if statement python

x=1; y=0; z=0;
if x==1 or y==0:
  if z=0 and x=1:
    print('Useless conditions satisfed!')

Example 3: Python If ... Else

a = 200
b = 33
if b > a:
  print("b is greater than a")
elif a == b:
  print("a and b are equal")
else:
  print("a is greater than b")

Example 4: else if python

if (condion):
   result
    
elif (condition):
   results
    
else:
   result

Example 5: if else python

if condition:
   result
elif condition:
   result
else:
   result