Booleans are values that are used to represent
truthness. As such, there are only two
possible values: True
or False
.
validated = True
In the example above, we create a variable
called validated
and assign to it the
boolean value True
.
Create a variable called processed
and
assign to it the boolean value False
.