python if statement is not true code example
Example 1: python if not true
a = False
if not a:
#Does this
a = True
if not a:
#Doesn't do this
Example 2: if not python
a = False
if not a:
yourFunction()
a = False
if not a:
#Does this
a = True
if not a:
#Doesn't do this
a = False
if not a:
yourFunction()