3. elseif block
#If - elif - else
x = 10
if x > 100:
print("x is greater than 100")
elif x > 70:
print("x is greater than 70")
elif x > 60:
print ("x is greater than 60")
elif x > 50:
print ("x is greater than 50")
else:
print("We don't have a clue")INFO