The boolean datatype in Python Published by John Player on February 26, 2019 Boolean is a true / false, on / off value: print type(True) print type(False) Results in: <type 'bool'> <type 'bool'> Published inPyCharmPythonscripting