what happens if the condition is not true 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