if else not in python code example
Example 1: 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!
Example 2: python if not
today = 'Sunday'
if not today=='Sunday':
print('Go to work.')
else:
print('Take rest.')