Python Boolean Example


Program
a = True b = False print(type(a)) print(type(b))
Input
Output