which are boolean values
Answers
Answered by
4
Answer:
In computer science, the Boolean data type is a data type that has one of two possible values (usually denoted true and false) which is intended to represent the two truth values of logic and Boolean algebra. It is named after George Boole, who first defined an algebraic system of logic in the mid 19th century.
Hope it is clear...
Please mark it as the brainliest
PLEASE
Answered by
16
An expression that is either true or false. There are exactly two Boolean values: True and False. Boolean values result when a Boolean expression is evaluated by the Python interepreter. They have type bool.
These boolean operators are described in the following four examples: x AND y - returns True if both x and y are true; returns False if either x or y are false.
Similar questions