The output of the program will be:
True
This is because the or
operator returns True
if at least one of the operands is True
. In this case, hat
is True
, and coat
is False
, so the expression hat or coat
evaluates to True
.
hat =True;
coat=False
print(hat or coat)
(1 point)
False
True
hat or coat
True or False
1 answer
The output of the program will be:
True
This is because the or
operator returns True
if at least one of the operands is True
. In this case, hat
is True
, and coat
is False
, so the expression hat or coat
evaluates to True
.