if not working python code example
Example 1: python else if statement not working
else if
elif
else if
myVar = False
if myVar == True:
print("yes")
elif myVar == False:
print("no")
else:
print("I don't know")
def myTest():
print("Test Complete!")
Example 2: python if not
a = False
if not a:
print("a is False")
if a == False:
print("a is False")
Example 3: if not python
boolean = False
if not boolean:
print("No")
else:
print("Yes")
Example 4: if not python
a = False
if not a:
yourFunction()
Example 5: python if not
today = 'Sunday'
if not today=='Sunday':
print('Go to work.')
else:
print('Take rest.')