Roman T
0
Q:

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!
2

New to Communities?

Join the community