# Boolean variables in python just start with a capital letter
True
False
found = True
found = False
#do not use found = true or found = false. This does not work in python although it may work in some other languages
True_or_False = True
if True_or_False == True:
True_or_False = False
else:
True_or_False = True