how to chekc if something is not true 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