if not working 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

# Using "if not" is practically saying that, 'if this condition is false......'
a = False
if not a:
  print("a is False")
  
# IS SAME AS:

if a == False:
  print("a is False")

Example 3: if not python

boolean = False

if not boolean: #Boolean is false.
  print("No")
else: #Boolean is True
  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.')