Quiz Complete, well Done!
The relational operator
is used to check if one value is less than another.
The comparison operator '>' is used to check if the left value is
the right value.
The 'not' operator is a
operator used to negate a comparison.
Which operator is used to check if one value is less than or equal to another in Python?
Which operator is used to check if one value is not equal to another in Python?
The comparison operator '==' is used to check if two values are
.
The 'and' operator is a
operator used for more complex comparisons.
The comparison operator '>=' is used to check if the left value is
the right value.
The 'or' operator is a
operator used for more complex comparisons.
Which operator is used to compare if one value is greater than another?
not in
What is the result of 3 < 5?
Which comparison operator is used to check if two values are not equal in Python?
What is the value of 3.5 == 3?
What does the operator '!=' in Python represent?