var1 = True
var2 = False
print(type(var1)) # type of var1 is bool
print(type(var2)) # type of var2 is bool
print(type(True)) # type of True keyword is bool
print(type(False)) # type of False keyword is bool
print(var1)
print(var2)
## Python uses 1 and 0 to represent True and False respectively
print(int(True)) # convert keyword True to int
print(int(False)) # convert keyword False to int