how to use multiple if statements in python code example

Example 1: if else python

# IF ELSE ELIF 

print('What is age?')
age = int(input('number:')) # user gives number as input
if age > 18:
    print('go ahead drive')
elif age == 18:
    print('come personaly for test')
else:
    print('still underage')

Example 2: python if elif

num = 20
if num > 30:
  print("big")
elif num == 30:
  print("same")
else:
  print("small")
#output: small

Example 3: if else statement with multiple conditions python

if( (5 ** 2 >= 25) and (4 * 2 < 8) or (35 / 7 > 4) ):
	print("Booleans make If more powerful!")

Example 4: how to add multiple if statements in python

var = 100
if var < 200:
   print "Expression value is less than 200"
   if var == 150:
      print "Which is 150"
   elif var == 100:
      print "Which is 100"
   elif var == 50:
      print "Which is 50"
   elif var < 50:
      print "Expression value is less than 50"
else:
   print "Could not find true expression"

print "Good bye!"