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