python elif not being invoked code example
Example: python else if statement not working
#In python, it's not
else if #INCORECT
#It's
elif #CORECT
#if your elif statement is not working, it's probably because your using
else if #INCORECT
#An example of this is:
myVar = False
if myVar == True:
print("yes")
elif myVar == False:
print("no")
else:
print("I don't know")
def myTest():
print("Test Complete!")
#Prints "no" with no errors!