how to write a not if statement in python code example
Example: python if not true
a = False
if not a:
#Does this
a = True
if not a:
#Doesn't do this
a = False
if not a:
#Does this
a = True
if not a:
#Doesn't do this