Python Programming - Operators - Discussion

Discussion Forum : Operators - General Questions (Q.No. 14)
14.
What is the result of the expression: True and False ?
True
False
None
Error
Answer: Option
Explanation:

The and operator in Python is a logical operator that returns True if both operands are true, and False otherwise.

In this case, True and False are the operands, and since the second operand is false, the result is False.

Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.