The output of the program will be:
True
The or
operator in Python returns True
if at least one of its operands is True
. Since hat
is True
and coat
is False
, the expression hat or coat
evaluates to True
.
hat = True
coat = False
print(hat or coat)
(1 point)
Responses
False
False
True
True
hat or coat
hat or coat
True or False
1 answer
The output of the program will be:
True
The or
operator in Python returns True
if at least one of its operands is True
. Since hat
is True
and coat
is False
, the expression hat or coat
evaluates to True
.