xxxxxxxxxx
var a = 2;
var b = 3;
var c = 2;
(a == b) // returns false
(a == c) //returns true
We can use this data type to represent boolean values. The only allowed values for this data type are: True and False
Internally Python represents True as 1 and False as 0
b = True type(b) bool
Eg: a = 10 b = 20 c = a
True+True 2 True-False 1