it is the condition used after the if condition. say you use the if condition and you need to add another outcome, instead of using the if condition again, you’d use elif and end it with the else command.
example:
if num == 10:
print (“correct”)
elif num > 10:
print (“too high”)
else:
print (”too low”)
hope this helps :]