Booleans

Booleans

Booleans in Python are truth values, i.e. True or False.

Booleans are generally used for control flow in programs.

The 2 types of boolean values in Python are True and False

Both boolean values must start with an Uppercase Letter

True # correct
False # correct

false # wrong
true # wrong

We’ll go into detail on how to use boolean values later, but for now that is all you need to know about booleans.