Python Programming - Operators - Discussion

Discussion Forum : Operators - General Questions (Q.No. 5)
5.
What is the result of the following operation: not (3 < 5)?
True
False
Error
None
Answer: Option
Explanation:
The not operator is a logical operator that returns the opposite of a Boolean value. In this case, the expression (3 < 5) is True, but the not operator negates it to False.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.