A boolean type can have value True or False.
a = True b = False c = 5 < 3 print(a) print(b) print(c) # printing type print(type(a))
TrueFalseFalse<class 'bool'>
Dependencies and Technologies Used: