Quiz Complete, well Done!
Which operator is used to check if one value is not equal to another in Python?
The 'not' operator is a
operator used to negate a comparison.
The comparison operator '!=' is used to check if two values are
.
Relational operators are used to compare
and determine the relationship between them.
What does the operator '<' in Python represent?
Which operator is used to check if one value is less than or equal to another in Python?
Which comparison operator is used to check if two values are not equal in Python?
What is the result of 3 < 5?
The comparison operator '<' is used to check if the left value is
the right value.
The comparison operator '>' is used to check if the left value is
the right value.
The relational operator
is used to check if two values are not equal.
Comparison Operators
Which operator is used to compare if two values are equal?
The comparison operator '==' is used to check if two values are
.
Which comparison operator is used to check if one value is greater than or equal to another in Python?
Which operator is used to compare if one value is greater than another?