Booleans and Conditionals

5.2. Boolean values and expressions The Python type for storing true and false values is called bool , named after the British mathematician, George Boole. He created Boolean algebra , which is the basis of all modern computer arithmetic. There are only two boolean values, True and False . ................
................