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